From ce8f90ca1db43849c9371d576a11a4064568e288 Mon Sep 17 00:00:00 2001 From: Isaac Abadi Date: Thu, 22 Jul 2021 02:13:11 -0600 Subject: [PATCH] Reverted python3->python dockerfile changes and re-added python2 to dockerfile --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index db83c4c..0be5ff4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,14 +29,12 @@ RUN addgroup -S $USER -g $GID && adduser -D -S $USER -G $USER -u $UID RUN apk add --no-cache \ ffmpeg \ npm \ + python2 \ python3 \ su-exec \ && 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