1
0
mirror of synced 2026-02-06 10:55:56 +00:00

Update dependencies to Kubernetes 1.32.0 and Go 1.23.0

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
Stefan Prodan
2024-12-12 16:21:42 +02:00
parent 939cffa561
commit 2b68c8c664
6 changed files with 166 additions and 175 deletions

View File

@@ -1,15 +1,15 @@
FROM alpine:3.20 as builder
FROM alpine:3.21 AS builder
RUN apk add --no-cache ca-certificates curl
ARG ARCH=linux/amd64
ARG KUBECTL_VER=1.31.0
ARG KUBECTL_VER=1.32.0
RUN curl -sL https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VER}/bin/${ARCH}/kubectl \
-o /usr/local/bin/kubectl && chmod +x /usr/local/bin/kubectl && \
kubectl version --client=true
FROM alpine:3.20 as flux-cli
FROM alpine:3.21 AS flux-cli
RUN apk add --no-cache ca-certificates