From f66dc92918028244820548eb90b5235b6f54647f Mon Sep 17 00:00:00 2001 From: Andy Grunwald Date: Sun, 8 Nov 2015 09:58:45 +0100 Subject: [PATCH] Fix file permission for .env file --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 31af9031..b69a4869 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,7 @@ WORKDIR /var/www/html/ # copy the various nginx and supervisor conf (to handle both fpm and nginx) COPY docker/.env.docker /var/www/html/.env +RUN chown www-data /var/www/html/.env COPY docker/crontab /etc/cron.d/artisan-schedule RUN chmod 0644 /etc/cron.d/artisan-schedule &&\