Skip to content

Commit 7475f50

Browse files
Merge pull request #175 from winsopc/ib-k8s-make-image-fix
fix: use correct --build-arg syntax in Docker build command
2 parents f0be50d + f6c4c08 commit 7475f50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ test-coverage: | plugins-coverage envtest gocovmerge gcov2lcov ## Run coverage t
153153
# Container image
154154
.PHONY: image
155155
image: ; $(info Building Docker image...) ## Build conatiner image
156-
$(IMAGE_BUILDER) build -t $(TAG) -f $(DOCKERFILE) $(CURDIR) -build-arg GOPROXY="$(GOPROXY)" $(IMAGE_BUILD_OPTS)
156+
$(IMAGE_BUILDER) build -t $(TAG) -f $(DOCKERFILE) $(CURDIR) --build-arg GOPROXY="$(GOPROXY)" $(IMAGE_BUILD_OPTS)
157157

158158
# Misc
159159

0 commit comments

Comments
 (0)