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