You can build and run the Docker image:
$ docker build --file ./Dockerfile -t my-nodejs-app .
$ docker run -d -p 3000:3000 my-nodejs-appThen, load http://localhost:3000/ in a browser to see the output.
You can build and run the Docker image:
$ docker build --file ./Dockerfile -t my-nodejs-app .
$ docker run -d -p 3000:3000 my-nodejs-appThen, load http://localhost:3000/ in a browser to see the output.