Skip to content

Commit 3075f1d

Browse files
updated cli-v2, kubectl in runtime-installer
1 parent 2180dc6 commit 3075f1d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

installer-image/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.2 AS go-build
1+
FROM golang:1.24.6 AS go-build
22

33
RUN go install github.com/davidrjonas/semver-cli@latest \
44
&& cp $GOPATH/bin/semver-cli /usr/local/bin/
@@ -8,13 +8,13 @@ FROM debian:12.11-slim
88

99
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
1010

11-
ARG CF_CLI_VERSION=v0.2.9
11+
ARG CF_CLI_VERSION=v0.2.10
1212
ARG TARGETARCH
1313

1414
RUN apt-get update && apt-get install curl jq -y
1515
RUN curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/${CF_CLI_VERSION}/cf-linux-${TARGETARCH}.tar.gz | tar zx && mv ./cf-linux-${TARGETARCH} /usr/local/bin/cf
1616
COPY --from=go-build /usr/local/bin/semver-cli /usr/local/bin/semver-cli
17-
COPY --from=bitnami/kubectl:1.33.1 /opt/bitnami/kubectl/bin/kubectl /usr/local/bin/
17+
COPY --from=bitnami/kubectl:1.33.3 /opt/bitnami/kubectl/bin/kubectl /usr/local/bin/
1818

1919
RUN adduser --shell /bin/bash codefresh
2020
USER codefresh

0 commit comments

Comments
 (0)