Skip to content

Instantly share code, notes, and snippets.

@alanhortz
Created July 21, 2015 21:15
Show Gist options
  • Save alanhortz/cbe6a986ca0702a3fb23 to your computer and use it in GitHub Desktop.
Save alanhortz/cbe6a986ca0702a3fb23 to your computer and use it in GitHub Desktop.
Usefull generic node.js Docker image for bootstrapping my Docker projects
FROM node:latest
RUN mkdir /app
ADD ./src /app
ADD ./package.json /
RUN npm install
# CMD can be overriden by
# - docker run [COMMAND]
# - docker-compose yml file [command: ...]
CMD node /app/server.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment