From fc2267b495e02f01178a9ae23a10ba11a7f84b5b Mon Sep 17 00:00:00 2001 From: Conrad Date: Wed, 28 Sep 2022 00:09:22 +0200 Subject: [PATCH] Adjusted pip commands for Python 3 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ff4e9bd..c64fc11 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ FROM node:lts-alpine3.9 RUN apk update && apk add --no-cache bash git openssh python3 py3-pip -RUN pip install --no-cache-dir -q --upgrade pip -RUN pip install --no-cache-dir -q autopep8 +RUN pip3 install --no-cache-dir -q --upgrade pip +RUN pip3 install --no-cache-dir -q autopep8 COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]