From 889c4f11c9f407e3aef3f2524a78355d98ad27be Mon Sep 17 00:00:00 2001 From: Fran Carabajal Date: Thu, 4 Dec 2025 12:19:40 -0300 Subject: [PATCH] Fix: missing stage name in php-fpm Dockerfile I simply added the stage name that the compose.prod.yml references for service php-fpm since it was not building when I tried using those fiels. --- content/guides/frameworks/laravel/production-setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/guides/frameworks/laravel/production-setup.md b/content/guides/frameworks/laravel/production-setup.md index 4e9a975f17..32857e6617 100644 --- a/content/guides/frameworks/laravel/production-setup.md +++ b/content/guides/frameworks/laravel/production-setup.md @@ -98,7 +98,7 @@ RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local && composer install --no-dev --optimize-autoloader --no-interaction --no-progress --prefer-dist # Stage 2: Production environment -FROM php:8.4-fpm +FROM php:8.4-fpm AS production # Install only runtime libraries needed in production # libfcgi-bin and procps are required for the php-fpm-healthcheck script