File tree 3 files changed +2
-4
lines changed
cmd/conduit/root/pipelines
3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ FROM golang:1.23-bullseye AS base
3
3
4
4
# Install core tools
5
5
RUN apt-get update && \
6
- apt-get install -y curl && \
7
- apt-get install -y build-essential && \
8
6
apt-get install -y git
9
7
10
8
# Build the full app binary
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ build: check-go-version
12
12
go build -ldflags " -X 'github.com/conduitio/conduit/pkg/conduit.version=${VERSION} '" -o conduit ./cmd/conduit/main.go
13
13
@echo " \nBuild complete. Enjoy using Conduit!"
14
14
@echo " Get started by running:"
15
- @echo " ./conduit"
15
+ @echo " ./conduit run "
16
16
17
17
.PHONY : test
18
18
test :
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ func (c *InitCommand) Execute(_ context.Context) error {
244
244
245
245
fmt .Printf (`Your pipeline has been initialized and created at %s.
246
246
247
- To run the pipeline, simply run 'conduit'.` , c .configFilePath )
247
+ To run the pipeline, simply run 'conduit run '.` , c .configFilePath )
248
248
249
249
return nil
250
250
}
You can’t perform that action at this time.
0 commit comments