Update Dockerfile

This commit is contained in:
Mawoka
2023-03-20 23:57:18 +01:00
committed by GitHub
parent a7f2d59f36
commit dd62815841
+1 -1
View File
@@ -2,7 +2,7 @@ FROM python:3.10-slim
COPY Pipfile* /app/
WORKDIR /app/
RUN apt update && apt install -y jq gcc && jq -r '.default | to_entries[] | .key + .value.version' Pipfile.lock > requirements.txt
RUN apt update && apt install -y jq gcc libpq5 libpq-dev && jq -r '.default | to_entries[] | .key + .value.version' Pipfile.lock > requirements.txt
RUN pip install -r requirements.txt
COPY classquiz/ /app/classquiz/