Stop removing dependencies

The container is layered, and this layer is in there. Until the layers are removed, it doesn't make any difference
This commit is contained in:
Jake Howard 2022-08-27 19:01:14 +01:00
parent c6776faa8c
commit 6272307e35
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 0 additions and 2 deletions

View File

@ -35,8 +35,6 @@ RUN python -m venv $VIRTUAL_ENV
COPY --chown=website requirements/base.txt ./requirements/base.txt
RUN pip install --no-cache --upgrade pip && pip install --no-cache -r ./requirements/base.txt
RUN apt-get remove --yes build-essential && apt-get autoremove --yes && rm -rf /var/lib/apt/lists /var/cache/apt
COPY --chown=website --from=frontend ./static/build ./static/build
COPY --chown=website ./etc ./etc