Makefile: drop deps from image dependencies
Docker builds shouldn't run go here to avoid CircleCI failures like this: make: go: Command not found make: *** [Makefile:32: deps] Error 127 Exited with code 2
This commit is contained in:
parent
a3890910f2
commit
a168f09ac4
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -14,7 +14,7 @@ build: deps
|
|||
&& export CGO_ENABLED=0 \
|
||||
&& go build -v -mod=vendor -ldflags $(BUILD_FLAGS) -o ${BINARY} ./cli/main.go
|
||||
|
||||
image: deps
|
||||
image:
|
||||
@echo "=> Building image"
|
||||
@docker build -t cityofzion/neo-go:latest --build-arg REPO=$(REPO) --build-arg VERSION=$(VERSION) .
|
||||
@docker build -t cityofzion/neo-go:$(VERSION) --build-arg REPO=$(REPO) --build-arg VERSION=$(VERSION) .
|
||||
|
|
Loading…
Reference in a new issue