From 0b17526b5e3eb8020880637db6d84f023f5d775a Mon Sep 17 00:00:00 2001 From: aklyachkin Date: Tue, 3 Dec 2019 14:04:20 +0100 Subject: [PATCH] ppc64le support --- alpine/Dockerfile | 1 + alpine/tmplv1.Dockerfile | 1 + alpine/tmplv2.Dockerfile | 1 + 3 files changed, 3 insertions(+) diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 8170b5d..22be44b 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -6,6 +6,7 @@ RUN set -ex; \ armhf) arch='armv6' ;; \ aarch64) arch='arm64' ;; \ x86_64) arch='amd64' ;; \ + ppc64le) arch='ppc64le' ;; \ *) echo >&2 "error: unsupported architecture: $apkArch"; exit 1 ;; \ esac; \ wget --quiet -O /tmp/traefik.tar.gz "https://github.com/containous/traefik/releases/download/v2.1.0-rc3/traefik_v2.1.0-rc3_linux_$arch.tar.gz"; \ diff --git a/alpine/tmplv1.Dockerfile b/alpine/tmplv1.Dockerfile index e04dd39..3a22660 100644 --- a/alpine/tmplv1.Dockerfile +++ b/alpine/tmplv1.Dockerfile @@ -6,6 +6,7 @@ RUN set -ex; \ armhf) arch='arm' ;; \ aarch64) arch='arm64' ;; \ x86_64) arch='amd64' ;; \ + ppc64le) arch='ppc64le' ;; \ *) echo >&2 "error: unsupported architecture: $apkArch"; exit 1 ;; \ esac; \ wget --quiet -O /usr/local/bin/traefik "https://github.com/containous/traefik/releases/download/$VERSION/traefik_linux-$arch"; \ diff --git a/alpine/tmplv2.Dockerfile b/alpine/tmplv2.Dockerfile index 83ff9a9..feda93a 100644 --- a/alpine/tmplv2.Dockerfile +++ b/alpine/tmplv2.Dockerfile @@ -6,6 +6,7 @@ RUN set -ex; \ armhf) arch='armv6' ;; \ aarch64) arch='arm64' ;; \ x86_64) arch='amd64' ;; \ + ppc64le) arch='ppc64le' ;; \ *) echo >&2 "error: unsupported architecture: $apkArch"; exit 1 ;; \ esac; \ wget --quiet -O /tmp/traefik.tar.gz "https://github.com/containous/traefik/releases/download/${VERSION}/traefik_${VERSION}_linux_$arch.tar.gz"; \