From 2b35391800c4d35908d4c2411898f3dd3867fd2d Mon Sep 17 00:00:00 2001 From: NH Gooi Date: Fri, 27 Feb 2026 15:51:11 +0100 Subject: [PATCH] Dockerfile CHDIR fix --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 877cefc1..c00f945c 100755 --- a/Dockerfile +++ b/Dockerfile @@ -29,10 +29,11 @@ ADD docker/apache.conf /etc/apache2/sites-enabled/000-default.conf WORKDIR /var/www/html COPY . /var/www/html +WORKDIR /var/www/app RUN mkdir -p storage/framework/{sessions,views,cache,cache/data} && \ chown -R www-data:www-data storage/framework && \ chmod -R 775 storage -RUN php artisan cache:clear && \ - php artisan config:clear && \ - php artisan view:clear +#RUN php artisan cache:clear && \ +# php artisan config:clear && \ +# php artisan view:clear