Don't use pip cache when building container
This commit is contained in:
parent
830def684b
commit
28f44af7d3
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ USER website
|
||||||
|
|
||||||
RUN python -m venv $VIRTUAL_ENV
|
RUN python -m venv $VIRTUAL_ENV
|
||||||
COPY --chown=website requirements/base.txt ./requirements/base.txt
|
COPY --chown=website requirements/base.txt ./requirements/base.txt
|
||||||
RUN pip install --upgrade pip && pip install -r ./requirements/base.txt
|
RUN pip install --no-cache --upgrade pip && pip install --no-cache -r ./requirements/base.txt
|
||||||
|
|
||||||
COPY --chown=website --from=frontend ./static/build ./static/build
|
COPY --chown=website --from=frontend ./static/build ./static/build
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue