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 build/controlplane.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN mkdir bin
# GOEXPERIMENT=jsonv2 required by github.com/lestrrat-go/jwx/v4
RUN GOEXPERIMENT=jsonv2 go build -mod vendor -o bin ./cmd/controlplane

FROM alpine:3.23
FROM alpine:3.24
RUN apk add --no-cache ca-certificates musl-locales musl-locales-lang
# we deal with files and we just want to make sure that no strange shit
# happens because LANG does not support utf8
Expand Down
2 changes: 1 addition & 1 deletion build/servermon.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY .. .
RUN mkdir bin
RUN go build -mod vendor -o bin ./cmd/servermon

FROM alpine:3.23
FROM alpine:3.24
RUN apk add --no-cache ca-certificates curl
WORKDIR /bin
COPY --from=builder /build/bin/servermon servermon
Expand Down