Skip to content

Instantly share code, notes, and snippets.

@justsml
Created April 10, 2016 18:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justsml/63c376738eaad5cbb6201b1c79a7dea4 to your computer and use it in GitHub Desktop.
Save justsml/63c376738eaad5cbb6201b1c79a7dea4 to your computer and use it in GitHub Desktop.
Example Dockerfile which ADD's (remote HTTPS) Shell Enhancements
FROM node:5.10.1
MAINTAINER Dan Levy <Dan@DanLevy.net>
EXPOSE 3000
ADD https://raw.githubusercontent.com/justsml/system-setup-tools/master/home-scripts/.bashrc /root/.bashrc
ADD https://raw.githubusercontent.com/justsml/system-setup-tools/master/home-scripts/.bash_aliases /root/.bash_aliases
COPY . /app/
WORKDIR /app
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment