Fix failing arm32v5 builds#419
Merged
Merged
Conversation
Member
Author
|
Will rebase after the Alpine update: #420. |
compile gems instead of relying on "arm-linux-gnu" pre-compiled gems
tianon
approved these changes
Jun 23, 2026
docker-library-bot
added a commit
to docker-library-bot/official-images
that referenced
this pull request
Jun 23, 2026
Changes: - docker-library/redmine@4e7d7ad: Fix failing arm32v5 builds (docker-library/redmine#419) - docker-library/redmine@52417b1: Merge pull request docker-library/redmine#420 from infosiftr/alpine - docker-library/redmine@cd64642: Update to Alpine 3.24
tianon
pushed a commit
to docker-library/official-images
that referenced
this pull request
Jun 23, 2026
Changes: - docker-library/redmine@4e7d7ad: Fix failing arm32v5 builds (docker-library/redmine#419) - docker-library/redmine@52417b1: Merge pull request docker-library/redmine#420 from infosiftr/alpine - docker-library/redmine@cd64642: Update to Alpine 3.24 Co-authored-by: Docker Library Bot <doi+docker-library-bot@docker.com>
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.
compile gems instead of relying on "arm-linux-gnu" pre-compiled gems
The
arm32v5image has been broken since5.0.6; the last working image is5.0.5. 😞 The breakage was only noticed with the addition ofbundle exec rake time:zones:allduring the build in #418.It broke because Redmine
5.0.6included anokogiribump to1.15.2. The nokogiri gem started providing pre-compiled libraries in their gem under "arm-linux" in1.14.x(which has since evolved to "arm-linux-gnu" so that they can provide "-musl" builds as well). Andrubygemsarchitecture matching is not specific enough for arm variants; a gem that is provided as "arm-linux" is treated as "generic 32-bit ARM" when the gem creators are compiling them inarmv7orarmv6environments.