We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1240da3 commit 7955c1eCopy full SHA for 7955c1e
kube-devcontainer/Dockerfile
@@ -3,7 +3,8 @@ FROM frappe/bench:latest
3
COPY entrypoint.sh /entrypoint.sh
4
5
# Install Tools
6
-RUN sudo curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" && \
+RUN sudo apt-get update && sudo apt-get install -y jq wait-for-it zsh && \
7
+ sudo curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" && \
8
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl && \
9
curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | sudo bash && \
10
curl -fsSL https://fluxcd.io/install.sh | sudo bash && \
0 commit comments