Skip to content

Commit 7955c1e

Browse files
committed
fix: updated kube-devcontainer
1 parent 1240da3 commit 7955c1e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

kube-devcontainer/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ FROM frappe/bench:latest
33
COPY entrypoint.sh /entrypoint.sh
44

55
# 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" && \
6+
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" && \
78
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl && \
89
curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | sudo bash && \
910
curl -fsSL https://fluxcd.io/install.sh | sudo bash && \

0 commit comments

Comments
 (0)