Skip to content

Commit

Permalink
Merge pull request #142 from acend/add_docker_again
Browse files Browse the repository at this point in the history
add the docker-cli again
  • Loading branch information
splattner authored Aug 25, 2023
2 parents fbb5b18 + c2a77ef commit 25b3544
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
18 changes: 11 additions & 7 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,16 @@ RUN chmod g+rw /home && \

RUN apt-get update && \
apt-get install -y git openssh-client bash nano libsecret-1-0 dnsutils \
grep vim tree p7zip figlet curl bash-completion unzip && \
grep vim tree p7zip figlet curl bash-completion unzip ca-certificates gnupg && \
install -m 0755 -d /etc/apt/keyrings && \
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg && \
chmod a+r /etc/apt/keyrings/docker.gpg && \
echo \
"deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
tee /etc/apt/sources.list.d/docker.list > /dev/null && \
apt-get update && \
apt-get install -y docker-ce-cli && \
apt-get autoremove -y && \
apt-get autoclean -y && \
apt-get clean
Expand Down Expand Up @@ -126,12 +135,7 @@ RUN cd /home/theia && \
./krew-linux_amd64 install krew && \
export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH" && \
# krew plugins
kubectl krew install ctx && \
kubectl krew install ns && \
kubectl krew install cert-manager && \
kubectl krew install cilium && \
kubectl krew install get-all && \
kubectl krew install modify-secret
for PLUGIN in ctx ns cert-manager cilium get-all modify-secret tree view-secret neat; do kubectl krew install $PLUGIN; done

WORKDIR /home/theia/applications/browser

Expand Down
4 changes: 2 additions & 2 deletions deploy/charts/webshell/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: webshell
description: A Helm chart to deploy a webshell environment
type: application
version: 0.4.0
appVersion: "0.4.0"
version: 0.4.1
appVersion: "0.4.1"

0 comments on commit 25b3544

Please sign in to comment.