From 55e0437f5ac07b84874f99298eaacf5dad48a6c4 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 7 Jan 2024 10:47:36 +0100 Subject: [PATCH] Update Dockerfile --- qbittorrent/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbittorrent/Dockerfile b/qbittorrent/Dockerfile index a0f5ad088..32d0b6492 100644 --- a/qbittorrent/Dockerfile +++ b/qbittorrent/Dockerfile @@ -84,7 +84,7 @@ RUN \ BUILD_ARCH=$(uname -m) && \ echo "${BUILD_ARCH}" && \ BUILD_ARCH=${BUILD_ARCH:-x86} && \ - if [[ "${BUILD_ARCH}" != *amd64* ]]; then apk add --no-cache python3-dev; else apk add --no-cache python3; fi && \ + if [ "${BUILD_ARCH}" != *amd64* ]; then apk add --no-cache python3-dev; else apk add --no-cache python3; fi && \ ln -sf python3 /usr/bin/python && \ apk add --no-cache py3-pip gcc musl-dev && \ pip3 install --break-system-packages --no-cache-dir --ignore-installed --upgrade --requirement /qbit_manage/requirements.txt