fix: use native ARM64 runners for Docker builds to avoid QEMU issues#60
Merged
Conversation
The previous Docker build process used QEMU emulation when building ARM64 images on x86_64 runners, which caused Alpine Linux busybox triggers to fail with "execve: No such file or directory" errors. Changes: - Split publish-docker job into two jobs: publish-docker-image and publish-docker-manifest - Use matrix strategy with native runners (ubuntu-24.04 for AMD64, ubuntu-24.04-arm for ARM64) - Create publish-docker-image.sh to build single-architecture images natively - Create publish-docker-manifest.sh to combine images into multi-arch manifest - Update Makefile.jinja to support new build targets This eliminates QEMU emulation issues while maintaining the same multi-arch Docker image output.
The old publish-docker Makefile target and publish-docker.sh script are no longer needed since we now use separate publish-docker-image and publish-docker-manifest targets that build on native architecture runners.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The previous Docker build process used QEMU emulation when building ARM64
images on x86_64 runners, which caused Alpine Linux busybox triggers to fail
with "execve: No such file or directory" errors.
Changes:
publish-docker-manifest
ubuntu-24.04-arm for ARM64)
This eliminates QEMU emulation issues while maintaining the same multi-arch
Docker image output.