From 5c8043c790a6fd75badca242cfd01a0a9bc8e117 Mon Sep 17 00:00:00 2001 From: sct Date: Sun, 5 Nov 2023 10:45:02 +0000 Subject: [PATCH] build: do not link python for arm --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 11c333d5..85b70306 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,7 @@ ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64} RUN \ case "${TARGETPLATFORM}" in \ 'linux/arm64' | 'linux/arm/v7') \ - apk add --no-cache python3 make g++ && \ - ln -s /usr/bin/python3 /usr/bin/python \ + apk add --no-cache python3 make g++ \ ;; \ esac