Created
November 16, 2018 14:45
-
-
Save davidboothe/300826baa8e2e6574160ea3682672f29 to your computer and use it in GitHub Desktop.
Zsh Staging 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
# Staging Container | |
FROM node:8.12.0 | |
# Set working directory | |
RUN mkdir /usr/src/app | |
WORKDIR /usr/src/app | |
# Add any global dependencies you need | |
# RUN npm install -g @angular/cli | |
# Add app | |
COPY . /usr/src/app | |
# Install Zsh to make life easier | |
RUN ["apt-get", "update"] | |
RUN ["apt-get", "install", "-y", "zsh"] | |
RUN wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh || true | |
CMD ["zsh"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment