From a45fc860327e14ccbecf73f5a501cc0a2b0b1e8b Mon Sep 17 00:00:00 2001 From: Ryan Cohen Date: Sun, 5 Nov 2023 20:43:58 +0900 Subject: [PATCH] build: do not link python for arm (#3670) --- 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