From 6be8e4fe0fd59cd326b835af8e1d15a9face88bd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 30 May 2025 21:11:59 +0000 Subject: [PATCH] Update alpine Docker tag to v3.22 --- packaging/docker/x86-alpine/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/docker/x86-alpine/Dockerfile b/packaging/docker/x86-alpine/Dockerfile index 7143e06..21349c9 100644 --- a/packaging/docker/x86-alpine/Dockerfile +++ b/packaging/docker/x86-alpine/Dockerfile @@ -1,14 +1,14 @@ # use multi stage dockerfile to first create a virtualenv, # then copy the virtualenv (without all build deps) into target image -FROM alpine:3.19 as build +FROM alpine:3.22 as build RUN apk -U update && apk -U upgrade RUN apk -U add python3 py3-virtualenv python3-dev gcc musl-dev linux-headers ADD src /src RUN virtualenv /usr/local/dyndnsc && \ /usr/local/dyndnsc/bin/pip install /src -FROM alpine:3.19 +FROM alpine:3.22 RUN apk -U update && \ apk -U upgrade && \ apk -U add --no-cache python3 && \