From 065f151a6216da56a19822a54bc8fc4450d49571 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" Date: Wed, 15 Apr 2026 21:02:22 +0000 Subject: [PATCH] chore(deps): update alpine docker tag to v3.23.4 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ff2bdc2..83f75ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.23.3 AS webproc +FROM alpine:3.23.4 AS webproc SHELL ["/bin/ash", "-o", "pipefail", "-c"] ENV WEBPROCVERSION=0.4.0 ENV WEBPROCURL=https://github.com/jpillora/webproc/releases/download/v$WEBPROCVERSION/webproc_"$WEBPROCVERSION"_linux_amd64.gz @@ -6,7 +6,7 @@ RUN apk add --no-cache curl=8.17.0-r1 && \ curl -sL $WEBPROCURL | gzip -d - > /usr/local/bin/webproc && \ chmod +x /usr/local/bin/webproc -FROM alpine:3.23.3 +FROM alpine:3.23.4 LABEL maintainer="Luke Tainton " LABEL org.opencontainers.image.source="https://git.tainton.uk/repos/docker-radius" LABEL org.opencontainers.image.description="FreeRADIUS server with web administration interface"