From d72beb2360f8790cf899e962f69aa5341cbc6369 Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 5 Mar 2021 17:39:03 +0100 Subject: [PATCH] Change order for copy --- web/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/Dockerfile b/web/Dockerfile index 4181c03..9151c92 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -15,10 +15,10 @@ RUN locale-gen en_US.UTF-8 ENV LANG en_US.UTF-8 # Install script -COPY /tmp INSTALL_NODB.sh -RUN chmod +x /tmp/INSTALL_NODB.sh +COPY INSTALL_NODB.sh . +RUN chmod +x INSTALL_NODB.sh USER www-data -RUN sh /tmp/INSTALL_NODB.sh +RUN sh INSTALL_NODB.sh # Supervisord Setup RUN ( \