From 44d32af4f943ec07e62b78637d9fedf6b54e7745 Mon Sep 17 00:00:00 2001 From: WilliamMiceli Date: Fri, 22 Nov 2019 23:04:15 -0500 Subject: [PATCH] Let's try this... --- Dockerfile | 6 ++++-- mysql_setup.sh => scripts/mysql_setup.sh | 0 2 files changed, 4 insertions(+), 2 deletions(-) rename mysql_setup.sh => scripts/mysql_setup.sh (100%) diff --git a/Dockerfile b/Dockerfile index 4d6c239..26541ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,8 +16,10 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins # Copying in nginx configuration COPY /etc/ /etc/ -# Setting up MySQL --Will come back to later, as it's not necessary and not playing very well with automation -RUN /mysql_setup.sh +COPY /scripts/ /scripts/ + +# Setting up MySQL +RUN /scripts/mysql_setup.sh # Copying in startup script COPY /entrypoint.sh / diff --git a/mysql_setup.sh b/scripts/mysql_setup.sh similarity index 100% rename from mysql_setup.sh rename to scripts/mysql_setup.sh