Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 920 Bytes

README.md

File metadata and controls

25 lines (14 loc) · 920 Bytes

NodeJS Base image

Codefresh build status Github

Base image for NodeJS containers. Contains node and npm.

Versions

  • latest – LTS version of NodeJS. Use this if you want always be up to date with stable branch
  • 6 – latest NodeJS release of 6.x branch
  • 7 – latest NodeJS release of 7.x branch

Usage

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