8 lines
271 B
Docker
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
|