From f0e73c1708062aed2f8a6f8b678bf3c8bf9e3b82 Mon Sep 17 00:00:00 2001 From: Isaac Abadi Date: Thu, 22 Jul 2021 01:50:51 -0600 Subject: [PATCH] python3 now aliases as python in Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 957657b..db83c4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,6 +34,9 @@ RUN apk add --no-cache \ && apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \ atomicparsley +RUN ln -s /usr/bin/python3 /usr/bin/python & \ + ln -s /usr/bin/pip3 /usr/bin/pip + WORKDIR /app COPY --chown=$UID:$GID [ "backend/package.json", "backend/package-lock.json", "/app/" ] RUN npm install forever -g