From 0c2fad088788b16154062c34ef676b1d5b552329 Mon Sep 17 00:00:00 2001 From: WilliamMiceli Date: Sat, 19 Oct 2019 15:50:22 -0400 Subject: [PATCH] Allow for installing php-fpm non-interactively --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index af8b34a..d0dbf6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,8 @@ USER root WORKDIR /var/www # MySQL 5.7 (Homefully not version 8...) -RUN apt-get update && apt-get install -y \ +RUN DEBIAN_FRONTEND=noninteractive + apt-get update && apt-get install -y --no-install-recommends \ mysql-server \ nginx \ php-fpm \