This repository has been archived by the owner on Aug 26, 2021. It is now read-only.
Add image support for various arm archs (v5,6,7) #69
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.
What does this PR do?
This PR adds native build support for the arch architectures v5, v6, v7 in that it checks versions more fine-grainedly and references official traefik binaries for those versions.
Motivation
It was not possible for me to run the docker build on my Raspberry Pi 3 because
apk --print-arch
spits out 'armv7', but the bash case operation only allows the generic 'armhf', which in turn results in the backwards-compatible 'armv6' binary.As Traefik actually releases binaries for particular arm architectures, specifically armv7 needed here, I updated the Dockerfile to make local builds possible.
This should not interfere with the build-pipeline at all, though I would appreciate the addition of armv7 images.