From 038810ff530cb69c6174f1e2339c19304dfc42cc Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Fri, 15 Jan 2021 18:27:39 +0100 Subject: [PATCH] Test --- transmission/Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/transmission/Dockerfile b/transmission/Dockerfile index f05c848f0..74ff96f43 100644 --- a/transmission/Dockerfile +++ b/transmission/Dockerfile @@ -2,6 +2,16 @@ ARG BUILD_VERSION #FROM $BUILD_FROM ARG BUILD_ARCH +if [ $BUILD_ARCH = "armv7" ]; then + ARG BUILD_ARCH="arm32v7" + elif [ $BUILD_ARCH = "armhf" ]; then + ARG BUILD_ARCH="arm32v7" + elif [ $BUILD_ARCH = "aarch64" ]; then + ARG BUILD_ARCH="arm64v8" + elif [ $BUILD_ARCH = "amd64" ]; then + ARG BUILD_ARCH="amd64" +fi + FROM linuxserver/transmission:${BUILD_ARCH}-${BUILD_VERSION} # Add bashio