From 44962f7d5d3614dbaa6bf441ed97ac4859ca98cc Mon Sep 17 00:00:00 2001 From: WilliamMiceli Date: Sat, 19 Oct 2019 14:54:39 -0400 Subject: [PATCH] Added PHP-FPM --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2b9b0e1..f595971 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,10 @@ USER root WORKDIR /var/www # MySQL 5.7 (Homefully not version 8...) -RUN apt-get update && apt-get install mysql-server nginx -y \ +RUN apt-get update && apt-get install -y \ + mysql-server \ + nginx \ + php-fpm \ && rm -rf /var/lib/apt/lists/* # Setting up MySQL --Will come back to later, as it's not necessary and not playing very well with automation