Added no-cache to pip install in Dockerfile

This commit is contained in:
Keannu Bernasol 2023-09-25 20:46:33 +08:00
parent f9a3e7a440
commit b059c5f1cd

View file

@ -29,7 +29,7 @@ WORKDIR /code
ADD . /code/ ADD . /code/
# Install pipenv # Install pipenv
RUN pip install -r linux-requirements.txt RUN pip install --no-cache-dir -r linux-requirements.txt
# Make migrations # Make migrations
RUN python stude/manage.py makemigrations RUN python stude/manage.py makemigrations