From 362d981532691dbc863a9ff7aeadb95a7880fe62 Mon Sep 17 00:00:00 2001 From: Aarni Halinen Date: Fri, 22 Jul 2022 00:55:19 +0300 Subject: [PATCH] Disable pip dependency resolver in Dockerfile (handled by poetry) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 373b416..a4c7fb4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]