File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11FROM codercom/code-server:3.8.0
2- RUN sudo apt-get -y update && sudo apt-get -y install wget python3-pip pipenv cmake
2+
3+ RUN sudo apt-get -y update && \
4+ sudo apt-get -y install wget \
5+ python3-pip \
6+ pipenv \
7+ cmake \
8+ bash-completion
9+
310RUN sudo wget "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl" -O /usr/local/bin/kubectl && \
411 sudo chmod +x /usr/local/bin/kubectl
5- RUN curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
12+
13+ RUN sudo sh -c "kubectl completion bash >/etc/bash_completion.d/kubectl"
14+
15+ RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 && \
16+ chmod 700 get_helm.sh && \
17+ ./get_helm.sh
18+
619RUN sudo wget https://dl.min.io/client/mc/release/linux-amd64/mc -O /usr/local/bin/mc && \
720 sudo chmod +x /usr/local/bin/mc
21+
822ENV PYTHONPATH="${PYTHONPATH}:/home/coder/.local/bin"
923ENV PATH="/home/coder/.local/bin:${PATH}"
1024ADD requirements.txt /home/coder/requirements.txt
You can’t perform that action at this time.
0 commit comments