Files
template/Dockerfile
neckfire 61818df8c0
Some checks failed
Deploy / deploy (push) Failing after 26s
Actualiser Dockerfile
2026-03-10 12:34:14 +00:00

8 lines
271 B
Docker

FROM serversideup/php:8.4-fpm-nginx
ENV PHP_OPCACHE_ENABLE=1
COPY --chown=www-data:www-data . /var/www/html
RUN composer install --no-interaction --optimize-autoloader --no-dev
RUN php artisan config:cache && \
php artisan route:cache && \
php artisan view:cache