Disable pip dependency resolver in Dockerfile (handled by poetry)

This commit is contained in:
Aarni Halinen
2022-07-22 00:55:19 +03:00
parent e12be3c2f6
commit 362d981532
+1 -1
View File
@@ -22,7 +22,7 @@ ENV PYTHONUNBUFFERED=1 \
PIP_DEFAULT_TIMEOUT=100
RUN apt-get update && apt-get install --no-install-recommends -y build-essential
RUN pip install -r requirements.txt
RUN pip install --no-deps -r requirements.txt
RUN python manage.py collectstatic --noinput
CMD ["sh", "-c", "./production_entrypoint.sh"]