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 \