Skip to content

Commit

Permalink
Merge pull request #3046 from mikelsid/master
Browse files Browse the repository at this point in the history
🐛  Fix docker buildx makefile target missing arg (.)
  • Loading branch information
k8s-ci-robot committed Oct 26, 2022
2 parents e4e7f70 + 057f627 commit c73d4d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ docker-buildx: test ## Build and push docker image for the manager for cross-pla
sed -e '1 s/\(^FROM\)/FROM --platform=\$$\{BUILDPLATFORM\}/; t' -e ' 1,// s//FROM --platform=\$$\{BUILDPLATFORM\}/' Dockerfile > Dockerfile.cross
- docker buildx create --name project-v3-builder
docker buildx use project-v3-builder
- docker buildx build --push --platform=$(PLATFORMS) --tag ${IMG} -f Dockerfile.cross
- docker buildx build --push --platform=$(PLATFORMS) --tag ${IMG} -f Dockerfile.cross .
- docker buildx rm project-v3-builder
rm Dockerfile.cross
Expand Down

0 comments on commit c73d4d5

Please sign in to comment.