Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions ui/Containerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand All @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion vpn/Containerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
Loading