Skip to content

Commit 5af34a1

Browse files
dependabot[bot]brandond
authored andcommitted
Bump alpine from 3.21 to 3.22
Bumps alpine from 3.21 to 3.22. --- updated-dependencies: - dependency-name: alpine dependency-version: '3.22' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Brad Davidson <[email protected]>
1 parent 6b8d528 commit 5af34a1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23-alpine3.21 AS builder
1+
FROM golang:1.24-alpine3.22 AS builder
22

33
RUN apk add --no-cache bash git gcc musl-dev
44

@@ -13,7 +13,7 @@ FROM scratch AS binary
1313
COPY --from=builder /src/bin/helm-controller /bin/
1414

1515
# Dev stage for package, testing, and validation
16-
FROM golang:1.23-alpine3.21 AS dev
16+
FROM golang:1.24-alpine3.22 AS dev
1717
ARG ARCH
1818
ENV ARCH=$ARCH
1919
RUN apk add --no-cache bash git gcc musl-dev curl
@@ -36,6 +36,6 @@ RUN ./scripts/package
3636
FROM scratch AS artifacts
3737
COPY --from=package /src/dist/artifacts /dist/artifacts
3838

39-
FROM alpine:3.21 AS production
39+
FROM alpine:3.22 AS production
4040
COPY bin/helm-controller /usr/bin/
4141
CMD ["helm-controller"]

0 commit comments

Comments
 (0)