From a0643f80833e24e7e478004b1a3c0d76f4a4d0fd Mon Sep 17 00:00:00 2001 From: Liam Date: Fri, 13 Oct 2023 20:14:02 +0100 Subject: [PATCH] fix startup part 2 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d7493bb..1a4c8a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:3.18.4 as builder # Install build dependencies and required tools RUN apk update && apk upgrade && \ - apk add --no-cache php81 php81-fpm php81-gd build-base pcre-dev openssl-dev zlib-dev linux-headers + apk add --no-cache build-base pcre-dev openssl-dev zlib-dev linux-headers # Download and build the latest version of Nginx from source WORKDIR /tmp @@ -37,7 +37,7 @@ COPY --from=builder /start.sh /start.sh # Install runtime dependencies RUN apk update && apk upgrade && \ - apk add --no-cache php81 php81-fpm php81-gd + apk add --no-cache php81 php81-fpm php81-gd pcre # Cleanup unnecessary files RUN rm -rf /var/cache/apk/*