Skip to content

Instantly share code, notes, and snippets.

@davidboothe
Created November 16, 2018 14:45
Show Gist options
  • Save davidboothe/300826baa8e2e6574160ea3682672f29 to your computer and use it in GitHub Desktop.
Save davidboothe/300826baa8e2e6574160ea3682672f29 to your computer and use it in GitHub Desktop.
Zsh Staging Dockerfile
# 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