Skip to content

hopeua/docker-nodejs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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