Update Dockerfile

This commit is contained in:
Lizandro Guarnizo
2026-06-05 09:56:55 -05:00
parent 1d6ede5bc6
commit 5a780cc87d
+2 -1
View File
@@ -56,7 +56,8 @@ COPY . .
COPY --from=vendor /app/vendor vendor/
COPY --from=frontend /app/public/build public/build/
RUN composer dump-autoload --no-dev --optimize \
RUN mkdir -p bootstrap/cache \
&& composer dump-autoload --no-dev --optimize \
&& php artisan storage:link \
&& php artisan package:discover --ansi \
&& chmod -R 775 storage bootstrap/cache \