A simple Hello World Docker Image with NodeJS
npm install
npm start
Build the docker image
docker build -t test/test:1.0 .
Run the docker container mapping a local port on your machine (4000) to the container exposed port (4000)
docker run -p 4000:4000 test/test:1.0