Skip to content

Commit

Permalink
feat: install kubectl
Browse files Browse the repository at this point in the history
  • Loading branch information
pogromistik authored Jul 26, 2024
1 parent 12177b1 commit 7d00dab
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ RUN apt-get update \
&& curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 \
&& chmod 700 get_helm.sh \
&& ./get_helm.sh \
# Kubectl
&& curl -LO https://dl.k8s.io/release/v1.29.0/bin/linux/amd64/kubectl \
&& chmod +x ./kubectl \
&& sudo mv ./kubectl /usr/local/bin/kubectl \
# Cleanup
&& rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 7d00dab

Please sign in to comment.