Last active
May 15, 2020 02:54
-
-
Save gaurangrshah/f969b5015fb660c20e372ac9f6f5dc6f to your computer and use it in GitHub Desktop.
gitpod dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM gitpod/workspace-full | |
USER gitpod | |
RUN curl https://cli-assets.heroku.com/install-ubuntu.sh | sudo sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: | |
file: .gitpod.Dockerfile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment