Skip to content

Commit

Permalink
fix(security): update binary version (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarzhou-portainer authored Sep 5, 2023
1 parent 7859d9c commit 4008380
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kube-shell/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ ARG ARCH
RUN apk add -U --no-cache bash bash-completion curl jq

# Kubectl CLI
ARG KUBECTL_VERSION=v1.24.1
ARG KUBECTL_VERSION=v1.28.1
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/${ARCH}/kubectl && \
chmod +x ./kubectl && \
mv ./kubectl /usr/local/bin/kubectl && \
echo -e 'source /usr/share/bash-completion/bash_completion\nsource <(kubectl completion bash)' >>~/.bashrc

# Helm
ARG HELM_VERSION=v3.9.0
ARG HELM_VERSION=v3.12.3
RUN curl -L https://get.helm.sh/helm-${HELM_VERSION}-linux-${ARCH}.tar.gz | tar xvzf - && \
mv ./linux-${ARCH}/helm . && \
chmod +x ./helm && \
Expand Down

0 comments on commit 4008380

Please sign in to comment.