From 05c2272385ad2b1af3c6345e82dae3640c830518 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 22 Jul 2024 22:01:54 +0000 Subject: [PATCH] chore(deps): update alpine docker tag to v3.20.2 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1a9ef7c..a166dee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build Nginx -FROM alpine:3.20.1 as builder +FROM alpine:3.20.2 as builder # Install build dependencies and required tools RUN apk update && apk upgrade && \ @@ -31,7 +31,7 @@ COPY ./docker/index.html /tmp/index.html COPY ./public /tmp/public # Stage 2: Create a smaller production image -FROM alpine:3.20.1 +FROM alpine:3.20.2 # Copy Nginx and PHP-FPM binaries and configurations from the builder stage COPY --from=builder /usr/local/nginx /usr/local/nginx -- 2.45.2