Merge pull request #1609 from parkervcp/add_fcgi_healthcheck

add missing package for healthcheck
This commit is contained in:
Michael (Parker) Parker
2025-08-13 14:15:44 -05:00
committed by GitHub
3 changed files with 3 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ WORKDIR /var/www/html
# Install additional required libraries
RUN apk add --no-cache \
caddy ca-certificates supervisor supercronic
caddy ca-certificates supervisor supercronic fcgi
COPY --chown=root:www-data --chmod=640 --from=composerbuild /build .
COPY --chown=root:www-data --chmod=640 --from=yarnbuild /build/public ./public

View File

@@ -68,7 +68,7 @@ WORKDIR /var/www/html
# Install additional required libraries
RUN apk add --no-cache \
caddy ca-certificates supervisor supercronic coreutils
caddy ca-certificates supervisor supercronic fcgi coreutils
COPY --chown=root:www-data --chmod=640 --from=composerbuild /build .
COPY --chown=root:www-data --chmod=640 --from=yarnbuild /build/public ./public

View File

@@ -13,5 +13,6 @@
root * /var/www/html/public
encode gzip
file_server
php_fastcgi 127.0.0.1:9000
}