Skip to content

Commit

Permalink
Don't install recommends
Browse files Browse the repository at this point in the history
  • Loading branch information
sbidoul committed Dec 8, 2023
1 parent 5c2e1c2 commit 681b71c
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 @@ -14,7 +14,7 @@ ENV LANG=C.UTF-8 \
# - jq
# - postgresql-client
# - pg-activity
RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get -y install --no-install-recommends \
apache2-utils \
bash \
gettext-base \
Expand All @@ -28,7 +28,7 @@ RUN apt-get update && apt-get install -y \
jq \
python3-pip \
python3-psycopg2 \
&& apt -y install --no-install-recommends postgresql-client \
postgresql-client \
&& apt -y clean \
&& rm -rf /var/lib/apt/lists/* \
&& python3 -m pip install pg-activity
Expand Down

0 comments on commit 681b71c

Please sign in to comment.