🚑 Possibly fixed backend-Dockerfile

This commit is contained in:
Mawoka
2022-08-13 18:09:36 +02:00
parent 1a65503fb1
commit c2fef2b49c
+4 -1
View File
@@ -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