From e65ff6541824829491f3a04b459564de79769e9f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 11 Jul 2025 21:00:29 +0000 Subject: [PATCH] Bump alpine from 3.18 to 3.22 Bumps alpine from 3.18 to 3.22. --- updated-dependencies: - dependency-name: alpine dependency-version: '3.22' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bcef594..e5428ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build and Test -FROM alpine:3.18 AS builder +FROM alpine:3.22 AS builder RUN apk add --no-cache \ build-base \ @@ -23,7 +23,7 @@ RUN pip install --no-cache-dir -r test/requirements.txt RUN python3 -m pytest test # Stage 2: Create a minimal runtime image -FROM alpine:3.18 AS runtime +FROM alpine:3.22 AS runtime RUN apk add --no-cache \ libstdc++ \