Hello, usage of non-x86 architectures is raising especially arm.
It will be very useful to support multi-arch builds. For example in github actions one can do:
...
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
...
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
platforms: linux/amd64,linux/s390x,linux/ppc64le
labels: ${{ steps.meta.outputs.labels }}
And this takes care of building and pushing for an arbitrary list of architectures, provided they are supported by the base image.
- duplicates
-
RFE-4320 Support building Arm images in Quay
-
- Closed
-
- is related to
-
PROJQUAY-3016 Add Multi-Arch Support
-
- New
-