Containerized nodejs hello world!
- Node js
- Docker
- package.json
- Dockerfile
- Base os is alphine with node js
To Build docker image, run the below docker command, more options available here
docker build -t hello .
Image will be pushed to docker registry by default. Image can be pushed to own private registry.
To Run Hello World application in docker
docker run -p 8080:8080 hello