fix permission denined issue

This commit is contained in:
Jack Goh
2018-07-18 18:48:19 +08:00
parent db7f99d653
commit f17ce7e159
+1 -1
View File
@@ -6,7 +6,7 @@ RUN docker-php-ext-install pdo pdo_mysql zip gd
WORKDIR /var/www
COPY . /var/www
RUN chown -R www-data:www-data /var/www
RUN chmod -Rf 777 /var/www/storage/logs/laravel.log
RUN chmod 777 /var/www/storage/logs/laravel.log
RUN composer install
RUN php artisan clear-compiled