initial commit

This commit is contained in:
2026-03-10 02:40:29 +01:00
commit 6be4e1c22e
60 changed files with 10929 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM serversideup/php:8.3-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