From d9faa67a9f4a5f83402e18fed7b2d23a1d81adbc Mon Sep 17 00:00:00 2001 From: DiouxX Date: Tue, 7 Jul 2020 13:24:58 +0200 Subject: [PATCH] Reduce size with --no-install-recommends --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 15c9ccc..bb01f3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ ENV DEBIAN_FRONTEND noninteractive #Installation d'apache et de php7.3 avec extension RUN apt update \ -&& apt --yes install \ +&& apt install --yes --no-install-recommends \ apache2 \ php7.3 \ php7.3-mysql \ @@ -24,6 +24,7 @@ php7.3-apcu-bc \ php-cas \ cron \ wget \ +ca-certificates \ jq \ && rm -rf /var/lib/apt/lists/*