Skip to content

Commit f6c4c08

Browse files
committed
fix: use correct --build-arg syntax in Docker build command
Signed-off-by: Zhen(Winson) Wang <[email protected]>
1 parent f3a77b3 commit f6c4c08

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)