Base image for NodeJS containers. Contains node and npm.
latest– LTS version of NodeJS. Use this if you want always be up to date with stable branch6– latest NodeJS release of 6.x branch7– latest NodeJS release of 7.x branch
Run to get into REPL
docker run -it --rm hope/nodejs
Execute .js file
docker run --rm hope/nodejs app.js
Use as base image for your app
FROM hope/nodejs