Skip to content

Commit

Permalink
fix: enable BUILD_ARGS in docker-buildx target (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
kurokobo authored Jan 15, 2024
1 parent 9b23cbb commit c16ae32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ PLATFORMS ?= linux/arm64,linux/amd64,linux/s390x,linux/ppc64le
docker-buildx: ## Build and push docker image for the manager for cross-platform support
- docker buildx create --name project-v3-builder
docker buildx use project-v3-builder
- docker buildx build --push --platform=$(PLATFORMS) --tag ${IMG} -f Dockerfile .
- docker buildx build --push $(BUILD_ARGS) --platform=$(PLATFORMS) --tag ${IMG} -f Dockerfile .
- docker buildx rm project-v3-builder

##@ Deployment
Expand Down

0 comments on commit c16ae32

Please sign in to comment.