Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Create a multiplatform docker image using docker buildx features
Per the Docker documentation [1], setup a github actions workflow to create both an amd64 and an arm64 image. This can be tested locally like so: - Create a docker-container builder that will use qemu-static-user `docker buildx create --name container --driver=docker-container --use` - Run the build using docker buildx with that new 'builder' ``` docker buildx build --builder=container \ --platform linux/amd64,linux/arm64 . ``` Also update the actions to their latest revs. [1] https://docs.docker.com/build/ci/github-actions/multi-platform/
- Loading branch information