From 5cc189b69a037549f7f3fe5ca0810e0fac908a00 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Sun, 13 Apr 2025 15:38:17 +0200 Subject: [PATCH] refactor(Dockerfile): reintroduce service generation command in the build process for consistency and ensure proper asset compilation --- docker/production/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/production/Dockerfile b/docker/production/Dockerfile index b7d571a8a..ae93c6237 100644 --- a/docker/production/Dockerfile +++ b/docker/production/Dockerfile @@ -30,7 +30,6 @@ COPY --chown=www-data:www-data composer.json composer.lock ./ RUN composer install --no-dev --no-interaction --no-plugins --no-scripts --prefer-dist USER www-data -RUN php artisan generate:services # ================================================================= # Stage 2: Frontend assets compilation @@ -124,6 +123,8 @@ COPY --chown=www-data:www-data openapi.yaml ./openapi.yaml RUN composer dump-autoload +RUN php artisan generate:services + # Configure Nginx and S6 overlay COPY docker/production/etc/nginx/conf.d/custom.conf /etc/nginx/conf.d/custom.conf COPY docker/production/etc/nginx/site-opts.d/http.conf /etc/nginx/site-opts.d/http.conf