Skip to content

Commit

Permalink
chore(ci): --no-install-recommends (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Mar 13, 2024
1 parent 2b246e4 commit 6854603
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/Dockerfile.app
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV PYTHONUNBUFFERED 1
# use python venv to copy to the app image later
ENV PATH="/venv/bin:$PATH"

RUN apt-get update && \
RUN apt-get update --no-install-recommends && \
apt-get install -y gcc

# set up venv
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile.nginx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ENV PYTHONUNBUFFERED 1
# use python venv to copy to the app image later
ENV PATH="/venv/bin:$PATH"

RUN apt-get update && \
RUN apt-get update --no-install-recommends && \
apt-get install -y gcc
RUN python -m venv /venv

Expand Down

0 comments on commit 6854603

Please sign in to comment.