From 2ad42ebf2755fca2ea0a85a0e6fc143b2ce61228 Mon Sep 17 00:00:00 2001 From: Isaac Abadi Date: Thu, 5 May 2022 02:29:31 -0400 Subject: [PATCH] Fixed issue where python couldn't be found --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 73112d4..5d4bd61 100644 --- a/Dockerfile +++ b/Dockerfile @@ -64,6 +64,8 @@ RUN npm config set strict-ssl false && \ npm install pm2 -g && \ npm install && chown -R $UID:$GID ./ +RUN ln -s /usr/bin/python3 /usr/bin/python + COPY --chown=$UID:$GID --from=frontend [ "/build/backend/public/", "/app/public/" ] COPY --chown=$UID:$GID [ "/backend/", "/app/" ]