Skip to content

Commit 889c4f1

Browse files
authored
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.
1 parent a55bf1b commit 889c4f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/guides/frameworks/laravel/production-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local
9898
&& composer install --no-dev --optimize-autoloader --no-interaction --no-progress --prefer-dist
9999

100100
# Stage 2: Production environment
101-
FROM php:8.4-fpm
101+
FROM php:8.4-fpm AS production
102102

103103
# Install only runtime libraries needed in production
104104
# libfcgi-bin and procps are required for the php-fpm-healthcheck script

0 commit comments

Comments
 (0)