Skip to content
Snippets Groups Projects
Unverified Commit 41b5245f authored by Dan Meruelo's avatar Dan Meruelo Committed by GitHub
Browse files

Build docker images for amd64 and arm64 (#65)

parent ef914ab8
No related branches found
No related tags found
No related merge requests found
...@@ -144,8 +144,11 @@ gcloud-auth: ...@@ -144,8 +144,11 @@ gcloud-auth:
image: image:
DOCKER_BUILDKIT=1 docker build -t $(DOCKER_TAG_DOCKERHUB) . DOCKER_BUILDKIT=1 docker build -t $(DOCKER_TAG_DOCKERHUB) .
imagepush: image imagepush:
docker push $(DOCKER_TAG_DOCKERHUB) docker buildx create --name httpbin
docker buildx use httpbin
docker buildx build --push --platform linux/amd64,linux/arm64 -t $(DOCKER_TAG_DOCKERHUB) .
docker buildx rm httpbin
# ============================================================================= # =============================================================================
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment