From d75bf58c88bda97946142862d3dc5256d7eb3e7f Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 19 Dec 2021 17:10:38 +0100 Subject: [PATCH] Update Dockerfile --- portainer/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/portainer/Dockerfile b/portainer/Dockerfile index 81c5f9f6e..6065fbab9 100644 --- a/portainer/Dockerfile +++ b/portainer/Dockerfile @@ -27,14 +27,15 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] ARG BUILD_UPSTREAM="2.11.0" RUN \ + BUILD_UPSTREAM="2.11.0" BUILD_ARCH=$(uname -m) \ && echo "${BUILD_ARCH}" \ && if [[ "${BUILD_ARCH}" == *aarch64* ]]; then ARCH="arm64"; fi \ && if [[ "${BUILD_ARCH}" == *armv8* ]]; then ARCH="arm64"; fi \ && if [[ "${BUILD_ARCH}" == *arm64* ]]; then ARCH="arm64"; fi \ && if [[ "${BUILD_ARCH}" == *armhf* ]]; then ARCH="arm"; fi \ - && if [[ "${BUILD_ARCH}" == *armv7* ]]; then echo ARCH="arm"; fi \ - && if [[ "${BUILD_ARCH}" == arm ]]; then echo ARCH="arm"; fi \ + && if [[ "${BUILD_ARCH}" == *armv7* ]]; then ARCH="arm"; fi \ + && if [[ "${BUILD_ARCH}" == arm ]]; then ARCH="arm"; fi \ && if [[ "${BUILD_ARCH}" == *x86* ]]; then ARCH="amd64"; fi \ \ && curl -L -s \