Skip to content

Commit ea8d7b3

Browse files
chore(deps): bump alpine from 3.21 to 3.22 (#2863)
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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 194b36a commit ea8d7b3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ RUN --mount=type=cache,id=gomod,target=/go/pkg/mod \
5757
ENTRYPOINT ["go", "run", "-mod", "vendor", "cmd/vcluster/main.go", "start"]
5858

5959
# we use alpine for easier debugging
60-
FROM alpine:3.21
60+
FROM alpine:3.22
6161

6262
# install runtime dependencies
6363
RUN apk add --no-cache ca-certificates zstd tzdata

Dockerfile.cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ENV GOCACHE=/.cache
3333
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} GO111MODULE=on go build -mod vendor -tags embed_chart -o /vcluster cmd/vclusterctl/main.go
3434

3535
# we use alpine for easier debugging
36-
FROM alpine:3.21
36+
FROM alpine:3.22
3737
# Set home to "/" in order to for kubectl to automatically pick up vcluster kube config
3838
ENV KUBECONFIG=/root/.kube/config
3939
COPY --from=builder /vcluster /usr/local/bin/vcluster

Dockerfile.cli.release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# we use alpine for easier debugging
2-
FROM alpine:3.21
2+
FROM alpine:3.22
33

44
ARG HELM_VERSION="v3.17.3"
55
ARG TARGETARCH

Dockerfile.release

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG KINE_VERSION="v0.13.14"
22
FROM rancher/kine:${KINE_VERSION} AS kine
33

44
# Build the manager binary
5-
FROM alpine:3.21 AS builder
5+
FROM alpine:3.22 AS builder
66

77
WORKDIR /vcluster-dev
88

@@ -18,7 +18,7 @@ RUN apk add --no-cache curl
1818
RUN curl -s https://get.helm.sh/helm-${HELM_VERSION}-linux-${TARGETARCH}.tar.gz > helm3.tar.gz && tar -zxvf helm3.tar.gz linux-${TARGETARCH}/helm && chmod +x linux-${TARGETARCH}/helm && mv linux-${TARGETARCH}/helm /usr/local/bin/helm && rm helm3.tar.gz && rm -R linux-${TARGETARCH}
1919

2020
# we use alpine for easier debugging
21-
FROM alpine:3.21
21+
FROM alpine:3.22
2222

2323
# install runtime dependencies
2424
RUN apk add --no-cache ca-certificates zstd tzdata

0 commit comments

Comments
 (0)