From 8518256c42dadf0e3e90479fc0d65a65c286a61c Mon Sep 17 00:00:00 2001 From: ein Date: Sun, 29 May 2022 07:51:34 -0700 Subject: [PATCH] pip optimzations --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8760e374..2050060f 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.8 as build ADD app/requirements.txt /requirements.txt -RUN pip install --disable-pip-version-check --no-cache-dir -q -r requirements.txt +RUN pip install --disable-pip-version-check --no-compile --no-cache-dir -q -r requirements.txt FROM python:3.8-slim RUN apt-get update && apt-get install -y --no-install-recommends imagemagick \