mirror of
https://github.com/kerberos-io/deployment.git
synced 2026-08-23 15:18:32 +00:00
7 lines
361 B
Docker
7 lines
361 B
Docker
FROM mcr.microsoft.com/devcontainers/go:1.24-bookworm
|
|
|
|
# Install helm and kubectl
|
|
RUN curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
|
|
RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" \
|
|
&& chmod +x ./kubectl \
|
|
&& sudo mv ./kubectl /usr/local/bin/kubectl |