Skip to content

Commit

Permalink
Merge pull request #4465 from fluxcd/alpine-3.19
Browse files Browse the repository at this point in the history
build: Update alpine and kubectl in flux-cli image
  • Loading branch information
stefanprodan authored Dec 12, 2023
2 parents b0c697d + 04cc127 commit 7b56fff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM alpine:3.18 as builder
FROM alpine:3.19 as builder

RUN apk add --no-cache ca-certificates curl

ARG ARCH=linux/amd64
ARG KUBECTL_VER=1.27.3
ARG KUBECTL_VER=1.28.4

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.18 as flux-cli
FROM alpine:3.19 as flux-cli

RUN apk add --no-cache ca-certificates

Expand Down

0 comments on commit 7b56fff

Please sign in to comment.