From 8649805ab34fe6dce68c6aebff321972fa226df8 Mon Sep 17 00:00:00 2001 From: Macleykun Date: Sun, 12 Jun 2022 14:52:21 +0200 Subject: [PATCH] Made sure to make script already executable using git, no need to do it again in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fbf756c1..80ec0aef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,6 +40,6 @@ RUN ln -s $dir/front /var/www/html/pialert \ EXPOSE 20211 # Set up startup script to run two commands, cron and the lighttpd server -RUN chmod +x $dir/dockerfiles/start.sh +# RUN chmod +x $dir/dockerfiles/start.sh CMD ["/home/pi/pialert/dockerfiles/start.sh"]