Skip to content

Commit

Permalink
Suppress apt output properly
Browse files Browse the repository at this point in the history
Signed-off-by: eternaltyro <230743+eternaltyro@users.noreply.github.com>
  • Loading branch information
eternaltyro committed May 17, 2024
1 parent 64273c4 commit 8ebec28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ WORKDIR /opt/python
# Setup backend build-time dependencies
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get install --no-install-recommends -y -q \
apt-get -q install --no-install-recommends -y \
build-essential \
postgresql-server-dev-15 \
python3-dev \
Expand Down Expand Up @@ -64,7 +64,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
# Setup backend runtime dependencies
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get install --no-install-recommends -y -q \
apt-get -q install --no-install-recommends -y \
postgresql-client libgeos3.11.1 proj-bin curl && \
apt-get clean && rm -rf /var/lib/apt/lists/*
COPY --from=build \
Expand Down

0 comments on commit 8ebec28

Please sign in to comment.