From 681b71cca98a09181c24e6daf00eafc2c6d59e0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Fri, 8 Dec 2023 19:17:48 +0100 Subject: [PATCH] Don't install recommends --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 48924ba..df39ede 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \ @@ -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