From d3c3986c7740272ee828d0dcf8095e016418707d Mon Sep 17 00:00:00 2001 From: Mawoka Date: Sat, 13 Aug 2022 18:32:25 +0200 Subject: [PATCH] :ambulance: Fixed backend-Dockerfile --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ed4cfa..faae44d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,10 +2,8 @@ FROM python:3.10-slim COPY Pipfile* /app/ WORKDIR /app/ -RUN pip3 install --upgrade pip && \ - pip install packaging \ - pip install pipenv && \ - pipenv install --system +RUN pip install pipenv packaging \ +&& pipenv install --system COPY classquiz/ /app/classquiz/ COPY image_cleanup.py /app/image_cleanup.py