We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b8d528 commit 5af34a1Copy full SHA for 5af34a1
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM golang:1.23-alpine3.21 AS builder
+FROM golang:1.24-alpine3.22 AS builder
2
3
RUN apk add --no-cache bash git gcc musl-dev
4
@@ -13,7 +13,7 @@ FROM scratch AS binary
13
COPY --from=builder /src/bin/helm-controller /bin/
14
15
# Dev stage for package, testing, and validation
16
-FROM golang:1.23-alpine3.21 AS dev
+FROM golang:1.24-alpine3.22 AS dev
17
ARG ARCH
18
ENV ARCH=$ARCH
19
RUN apk add --no-cache bash git gcc musl-dev curl
@@ -36,6 +36,6 @@ RUN ./scripts/package
36
FROM scratch AS artifacts
37
COPY --from=package /src/dist/artifacts /dist/artifacts
38
39
-FROM alpine:3.21 AS production
+FROM alpine:3.22 AS production
40
COPY bin/helm-controller /usr/bin/
41
CMD ["helm-controller"]
0 commit comments