From 4c8e09526df080f5fb891eecc0c3f00ff50410fb Mon Sep 17 00:00:00 2001 From: TJ Date: Mon, 16 Jan 2017 11:10:49 -0500 Subject: [PATCH] Fix Workspace Cron Permissions (#555) When I submitted #538 it looks like I overlooked the crontab file permissions for the Laradock user. This change ensure that all crons added during build are set to the correct permission level. --- workspace/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/workspace/Dockerfile b/workspace/Dockerfile index 46e1f850..e961f495 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -80,6 +80,7 @@ RUN if [ ${COMPOSER_GLOBAL_INSTALL} = true ]; then \ USER root COPY ./crontab /etc/cron.d +RUN chmod -R 644 /etc/cron.d ##################################### # xDebug: