Skip to content

Instantly share code, notes, and snippets.

@gaurangrshah
Last active May 15, 2020 02:54
Show Gist options
  • Save gaurangrshah/f969b5015fb660c20e372ac9f6f5dc6f to your computer and use it in GitHub Desktop.
Save gaurangrshah/f969b5015fb660c20e372ac9f6f5dc6f to your computer and use it in GitHub Desktop.
gitpod dockerfile
FROM gitpod/workspace-full
RUN ["apt-get", "update"]
RUN ["apt-get", "install", "-y", "zsh"]
USER gitpod
RUN sudo apt-get update && \
sudo apt-get install -y zsh
RUN wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
RUN curl https://cli-assets.heroku.com/install-ubuntu.sh | sudo sh
FROM gitpod/workspace-full
USER gitpod
RUN curl https://cli-assets.heroku.com/install-ubuntu.sh | sudo sh
image:
file: .gitpod.Dockerfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment