From b059c5f1cdbae8435fd30dc7d1126a0b12875734 Mon Sep 17 00:00:00 2001 From: Keannu Bernasol Date: Mon, 25 Sep 2023 20:46:33 +0800 Subject: [PATCH] Added no-cache to pip install in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 469694a..d76416b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ WORKDIR /code ADD . /code/ # Install pipenv -RUN pip install -r linux-requirements.txt +RUN pip install --no-cache-dir -r linux-requirements.txt # Make migrations RUN python stude/manage.py makemigrations