40 - Fix javascript/livewire issue
All checks were successful
Build and Push Docker Image / build (push) Successful in 4m16s

This commit is contained in:
myrmidex 2026-03-07 00:45:51 +01:00
parent 86b1fe7263
commit 7b3a59da10

View file

@ -31,8 +31,9 @@ RUN npm run build
# Remove node_modules after build to save space
RUN rm -rf node_modules
# Laravel optimizations
RUN php artisan config:cache \
# Publish Livewire assets and Laravel optimizations
RUN php artisan livewire:publish --assets \
&& php artisan config:cache \
&& php artisan route:cache \
&& php artisan view:cache \
&& composer dump-autoload --optimize