From 600bb9b2e94954fd490112f39db1ccb7b8c8e5d0 Mon Sep 17 00:00:00 2001 From: "Christopher C. Wells" Date: Fri, 23 Apr 2021 21:46:00 -0700 Subject: [PATCH] Do not optimize in Dockerfile --- Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index ffc6765..0dfa0ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,11 +54,6 @@ RUN composer install --optimize-autoloader --no-dev # Change current user to www. USER www -# Optimize application. -RUN php artisan config:cache -RUN php artisan route:cache -RUN php artisan view:cache - # Expose port 9000 and start php-fpm server. EXPOSE 9000 CMD ["php-fpm"]