Update Dockerfile.prod

This commit is contained in:
2025-08-31 08:03:14 +02:00
parent da8360a7cf
commit 599aba92d2

View File

@@ -62,4 +62,9 @@ COPY --from=frontend /app/public ./public
# Fix permissions for Laravel
RUN chown -R www-data:www-data storage bootstrap/cache
FROM nginx:1.27-alpine AS nginx
WORKDIR /var/www/html
COPY --from=final /var/www/html/public ./public
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
CMD ["php-fpm"]