From 0dfad8cfbddaeaae8964a2c001034cd4da906676 Mon Sep 17 00:00:00 2001 From: WilliamMiceli Date: Sat, 19 Oct 2019 00:09:42 -0400 Subject: [PATCH] MySQL install is annoying --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8d853b5..2b9b0e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,9 @@ WORKDIR /var/www RUN apt-get update && apt-get install mysql-server nginx -y \ && 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 +#RUN mysql_secure_installation --use-defaults + COPY /entrypoint.sh / # Expose Insecure Web, MySQL Server