We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d9ca3e0 + 34fb4a9 commit 82ae966Copy full SHA for 82ae966
.github/workflows/release.yaml
@@ -65,6 +65,13 @@ jobs:
65
run: |
66
gcloud auth configure-docker --quiet
67
68
+ # This is what we use in GME (under "make docker-setup-multiarch-buildkit")
69
+ - name: Docker Buildkit Setup (for multi arch)
70
+ run: |
71
+ docker buildx create --use --driver-opt "image=moby/buildkit:v0.10.6"
72
+ docker run --rm --privileged multiarch/qemu-user-static:register --reset
73
+ docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
74
+
75
- name: Build and push Docker image
76
77
DOCKER_BUILDKIT=1 docker buildx build --platform linux/amd64,linux/arm64 --tag gcr.io/solo-public/docs/portal-frontend:${RELEASE_TAG} --tag gcr.io/solo-public/docs/portal-frontend:latest .
0 commit comments