We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd79b4b commit 615dd18Copy full SHA for 615dd18
installer-image/Dockerfile
@@ -1,12 +1,11 @@
1
FROM debian:bullseye-slim
2
3
-ARG CF_CLI_VERSION=v0.1.68
4
-ARG KUBECTL_VERSION=v1.28.12
+ARG CF_CLI_VERSION=v0.1.69
5
ARG TARGETARCH
6
7
RUN apt-get update && apt-get install curl -y
8
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
9
-RUN curl -LO https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/linux/${TARGETARCH}/kubectl && chmod +x kubectl && mv ./kubectl /usr/local/bin/kubectl
+COPY --from=bitnami/kubectl:1.32.0 /opt/bitnami/kubectl/bin/kubectl /usr/local/bin/
10
11
RUN adduser --shell /bin/bash codefresh
12
USER codefresh
0 commit comments