From 7cbc81df24799e7bf74a2c0a808698716482feb1 Mon Sep 17 00:00:00 2001 From: William Miceli <1-WilliamMiceli@git.williammiceli.systems> Date: Fri, 15 Mar 2019 17:50:37 -0400 Subject: [PATCH] Apt just likes installing everything... --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 41c5783..132a267 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,10 +5,10 @@ ARG GRAV_VERSION=1.5.8 # Install dependencies RUN apt-get update && \ - apt-get install -y software-properties-common && \ + apt-get install -y --no-install-recommends software-properties-common && \ add-apt-repository ppa:ondrej/php && \ apt-get update && \ - apt-get install -y sudo wget unzip && \ + apt-get install -y --no-install-recommends sudo wget unzip && \ # Install PHP 7.2 and Module Requirements for Grav php7.2 \ php7.2-curl \