Skip to content

Instantly share code, notes, and snippets.

@justsml
Created April 10, 2016 18:38
Show Gist options
  • 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 <[email protected]>
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