From accdec3af465239fdebbcef937351f18c88f3f50 Mon Sep 17 00:00:00 2001 From: Mohamed Elashri Date: Thu, 4 Apr 2024 21:51:39 +0000 Subject: [PATCH] handle linking to python binary gracefully --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 066c24d6..5a5241cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ LABEL version="1.2.46-beta-1" # python3 would be required by node-gyp to natively build node addon # This is required if we build for multi-platform RUN apk add --no-cache git python3 make g++ \ - && ln -s /usr/bin/python3 /usr/bin/python + && ln -sf /usr/bin/python3 /usr/bin/python # Setup working directory RUN mkdir -p /opt/puter/app