Skip to content

Commit 14cf107

Browse files
authored
Address docker issue and change shell to Fish
1 parent 4e66e7a commit 14cf107

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.gitpod.Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
FROM gitpod/workspace-full
2+
# Make runc's proc mount work again https://github.com/gitpod-io/gitpod/issues/5124#issuecomment-897048987
3+
RUN curl -o olderrunc -L https://github.com/opencontainers/runc/releases/download/v1.0.0-rc93/runc.amd64 && chmod 755 olderrunc
4+
RUN sudo rm /usr/bin/runc && sudo cp olderrunc /usr/bin/runc
25
RUN sudo apt-get -qq update && sudo apt-get install -y zsh && sudo chsh -s $(which zsh)
36
RUN sh -c "$(curl -fsSL https://starship.rs/install.sh)" -- --yes && echo 'eval "$(starship init zsh)"' > .zshrc
47
RUN curl -OL https://github.com/lando/lando/releases/download/v3.1.4/lando-v3.1.4.deb && sudo dpkg -i lando-v3.1.4.deb && rm -rf lando-v3.1.4.deb

.gitpod.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ vscode:
1919
- stylelint.vscode-stylelint
2020
- tombonnike.vscode-status-bar-format-toggle
2121
- usernamehw.errorlens
22-
- whatwedo.twig
23-
- marcostazi.vs-code-drupal
22+
- mblode.twig-language
23+
- skippednote.vs-code-drupal

0 commit comments

Comments
 (0)