We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72f19c9 commit 6212d49Copy full SHA for 6212d49
base/Dockerfile
@@ -59,6 +59,13 @@ COPY --chown=gitpod:gitpod default.gitconfig /home/gitpod/.gitconfig
59
# configure git-lfs
60
RUN git lfs install --system --skip-repo
61
62
+# Autoload .bashrc.d for other SHELLs (fish and zsh)
63
+RUN mkdir -m 755 -p /usr/share/fish/vendor_conf.d /etc/zsh \
64
+ && printf 'source %s\n' /etc/zsh/autoload_bash.zsh >> /etc/zsh/zshrc
65
+COPY fish/autoload_bash.fish /usr/share/fish/vendor_conf.d
66
+COPY zsh/autoload_bash.zsh /etc/zsh
67
+RUN chmod 755 /etc/zsh/autoload_bash.zsh && touch $HOME/.zshrc
68
+
69
### Gitpod user (2) ###
70
USER gitpod
71
# use sudo so that user does not get sudo usage info on (the first) login
0 commit comments