From 06067f375c549b0627f0a3fa3d6c52b8dd032b83 Mon Sep 17 00:00:00 2001 From: "Michael (Parker) Parker" Date: Tue, 12 Aug 2025 09:08:10 -0500 Subject: [PATCH] Add fcgi package for healthcheck I missed adding the package to the dockerfile so the healthcheck is failing --- Dockerfile | 2 +- Dockerfile.dev | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 436d04882..5db6281af 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/Dockerfile.dev b/Dockerfile.dev index 0872e7ab4..982235a49 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -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