From 76e6f4c18b40915b725093646e300c1fc2ce9824 Mon Sep 17 00:00:00 2001 From: tsubramanian Date: Tue, 17 Oct 2023 19:46:15 +0530 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7294cced1..975aca9d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,10 +61,10 @@ RUN ls -lah /code/app/static WORKDIR /code RUN set -ex \ - && pip install --upgrade pip \ - && pip install -e . \ + && pip install --no-cache-dir --upgrade pip \ + && pip install --no-cache-dir -e . \ #: Install developer tools - && pip install -r app/requirements.dev.txt \ + && pip install --no-cache-dir -r app/requirements.dev.txt \ #: Remove pip download cache && rm -rf ~/.cache/pip