Allow for installing php-fpm non-interactively

This commit is contained in:
WilliamMiceli
2019-10-19 15:50:22 -04:00
parent ad02eace1c
commit 0c2fad0887

View File

@@ -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 \