In this lesson, we will be creating a Docker image with a very simple "Hello World" Node.js application.
This directory includes a Dockerfile for building a Docker image, and the application itself.
docker build -t hellonode .
docker run -i -t -p8000:8000 hellonode