Skip to content

Commit

Permalink
feat: add ppc64le support
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatur committed Jan 30, 2024
1 parent 3e53695 commit 516b1cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ RUN set -ex; \
aarch64) arch='arm64' ;; \
x86_64) arch='amd64' ;; \
s390x) arch='s390x' ;; \
ppc64le) arch='ppc64le' ;; \
*) echo >&2 "error: unsupported architecture: $apkArch"; exit 1 ;; \
esac; \
wget --quiet -O /tmp/traefik.tar.gz "https://github.com/traefik/traefik/releases/download/v2.11.0-rc2/traefik_v2.11.0-rc2_linux_$arch.tar.gz"; \
Expand Down
1 change: 1 addition & 0 deletions alpine/tmplv2.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ RUN set -ex; \
aarch64) arch='arm64' ;; \
x86_64) arch='amd64' ;; \
s390x) arch='s390x' ;; \
ppc64le) arch='ppc64le' ;; \
*) echo >&2 "error: unsupported architecture: $apkArch"; exit 1 ;; \
esac; \
wget --quiet -O /tmp/traefik.tar.gz "https://github.com/traefik/traefik/releases/download/${VERSION}/traefik_${VERSION}_linux_$arch.tar.gz"; \
Expand Down
1 change: 1 addition & 0 deletions alpine/tmplv3.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ RUN set -ex; \
aarch64) arch='arm64' ;; \
x86_64) arch='amd64' ;; \
s390x) arch='s390x' ;; \
ppc64le) arch='ppc64le' ;; \
*) echo >&2 "error: unsupported architecture: $apkArch"; exit 1 ;; \
esac; \
wget --quiet -O /tmp/traefik.tar.gz "https://github.com/traefik/traefik/releases/download/${VERSION}/traefik_${VERSION}_linux_$arch.tar.gz"; \
Expand Down

0 comments on commit 516b1cf

Please sign in to comment.