Skip to content

Instantly share code, notes, and snippets.

@vqoph
Last active February 11, 2016 22:45
Show Gist options
  • Save vqoph/f30dc45216967d6689d3 to your computer and use it in GitHub Desktop.
Save vqoph/f30dc45216967d6689d3 to your computer and use it in GitHub Desktop.
FROM node:argon
RUN apt-get update
RUN apt-get install -y zsh > /dev/null
RUN npm install -g -s strongloop
RUN npm install -g -s forever
RUN useradd -ms /bin/bash strongbox
WORKDIR /home/strongbox/Workspace
RUN chown -R strongbox:strongbox /home/strongbox/Workspace
USER strongbox
# Default to a login shell
CMD ["/bin/bash", "--login"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment