We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64dbc53 commit 7b8957cCopy full SHA for 7b8957c
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM golang:alpine3.22 as builder
+FROM golang:alpine3.23 as builder
2
3
# deinitializing GOPATH as otherwise go modules don't work properly
4
ENV GOPATH=""
@@ -14,7 +14,7 @@ COPY main.go ./
14
15
RUN CGO_ENABLED=0 GOOS=linux go build -o /helmquilt -trimpath -ldflags="-s -w -extldflags '-static'"
16
17
-FROM alpine:3.22
+FROM alpine:3.23
18
19
COPY --from=builder /helmquilt /
20
ENTRYPOINT [ "/helmquilt" ]
0 commit comments