diff --git a/api/Containerfile b/api/Containerfile index d4a5e3b5..47d38f05 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.5 AS dist +FROM docker.io/alpine:3.24.1 AS dist RUN apk add --no-cache \ curl \ easy-rsa \ diff --git a/ui/Containerfile b/ui/Containerfile index d8268676..4776405f 100644 --- a/ui/Containerfile +++ b/ui/Containerfile @@ -1,4 +1,4 @@ -FROM docker.io/alpine:3.22.5 AS build +FROM docker.io/alpine:3.24.1 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.5 AS dist +FROM docker.io/alpine:3.24.1 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 2553409c..21751fa3 100644 --- a/vpn/Containerfile +++ b/vpn/Containerfile @@ -1,4 +1,4 @@ -FROM docker.io/alpine:3.22.5 AS dist +FROM docker.io/alpine:3.24.1 AS dist RUN apk add --no-cache \ openvpn \ easy-rsa \