From c6a9c1406a23345be0a1fe7bccd14af378258d4b Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 30 Nov 2023 23:02:18 +0000 Subject: [PATCH] chore(deps): update alpine docker tag to v3.18.5 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4e16d5c..6065393 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build Nginx -FROM alpine:3.18.4 as builder +FROM alpine:3.18.5 as builder # Install build dependencies and required tools RUN apk update && apk upgrade && \ @@ -25,7 +25,7 @@ COPY ./upload.php /tmp/upload.php COPY ./docker/start.sh /start.sh # Stage 2: Create a smaller production image -FROM alpine:3.18.4 +FROM alpine:3.18.5 # Copy Nginx and PHP-FPM binaries and configurations from the builder stage COPY --from=builder /usr/local/nginx /usr/local/nginx