feat: entry point
CI / 🧪 Tests Laravel (push) Successful in 1m1s
CI / 🐳 Build & Push Image (push) Successful in 9s

This commit is contained in:
2026-07-10 16:55:26 +02:00
parent ada6bb821b
commit e362f03a39
3 changed files with 19 additions and 6 deletions
+5 -5
View File
@@ -30,14 +30,14 @@ COPY . .
RUN composer dump-autoload --optimize
RUN php artisan config:cache
RUN php artisan route:cache
RUN php artisan view:cache
RUN chown -R www-data:www-data storage bootstrap/cache
COPY docker/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
EXPOSE 8000
CMD ["frankenphp", "php-server", "--listen", "0.0.0.0:8000"]
ENTRYPOINT ["/entrypoint.sh"]