Add kubernetes clis to actionkit

This commit is contained in:
Radek Golan 2024-06-22 07:59:09 +02:00
parent 62109cb856
commit d771526362

View File

@ -11,5 +11,7 @@ RUN apt-get update && \
tee /etc/apt/sources.list.d/docker.list > /dev/null && \
(curl -sSL "https://github.com/buildpacks/pack/releases/download/v0.33.2/pack-v0.33.2-linux-arm64.tgz" | tar -C /usr/local/bin/ --no-same-owner -xzv pack) && \
apt-get update && \
apt-get install -y docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin git
apt-get install -y docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin git \
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/arm64/kubectl" \
install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl \
curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash