From dc80c4b2fcf7c2bb055a4c45efd9651d76527a19 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 16 Jul 2025 02:12:18 +0000 Subject: [PATCH] Update alpine Docker tag to v3.22.1 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 283067f..10c514c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage - Download and prepare webapp -FROM alpine:3.22.0 AS build +FROM alpine:3.22.1 AS build # Set version label ARG WEBAPP_VERSION @@ -30,7 +30,7 @@ RUN apk add --no-cache --virtual .build-deps \ && apk del .build-deps # Production stage - Final container -FROM alpine:3.22.0 +FROM alpine:3.22.1 # Build arguments for labels ARG BUILD_DATE