From d866da1bc06a156caec3e515ee8fbf6283d4276f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 10:51:13 +0000 Subject: [PATCH] chore(deps): update docker.io/alpine docker tag to v3.23.3 --- api/Containerfile | 2 +- ui/Containerfile | 4 ++-- vpn/Containerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api/Containerfile b/api/Containerfile index 3f6a344..07c14f2 100644 --- a/api/Containerfile +++ b/api/Containerfile @@ -23,7 +23,7 @@ RUN go build -ldflags='-extldflags=-static' -tags sqlite_omit_load_extension FROM build AS test RUN go test -FROM docker.io/alpine:3.22.3 AS dist +FROM docker.io/alpine:3.23.3 AS dist RUN apk add --no-cache \ curl \ easy-rsa \ diff --git a/ui/Containerfile b/ui/Containerfile index b604496..62da7a1 100644 --- a/ui/Containerfile +++ b/ui/Containerfile @@ -1,4 +1,4 @@ -FROM docker.io/alpine:3.22.3 AS build +FROM docker.io/alpine:3.23.3 AS build RUN apk add --no-cache \ git \ nodejs \ @@ -12,7 +12,7 @@ RUN git clone --depth=1 --branch="$UI_VERSION" https://github.com/NethServer/net && sed -i 's/standalone/controller/g' .env.production \ && npm run build -FROM docker.io/alpine:3.22.3 AS dist +FROM docker.io/alpine:3.23.3 AS dist RUN apk add --no-cache lighttpd COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] diff --git a/vpn/Containerfile b/vpn/Containerfile index fb10fb3..587bb27 100644 --- a/vpn/Containerfile +++ b/vpn/Containerfile @@ -1,4 +1,4 @@ -FROM docker.io/alpine:3.22.3 AS dist +FROM docker.io/alpine:3.23.3 AS dist RUN apk add --no-cache \ openvpn \ easy-rsa \