Run a Container
Once the image is built, you can create and run a container from it:
docker run -p 8080:8080 my-node-app
Here is the result at the command line

Here is the result in the browser

Finally the container running in Docker Desktop

6
Once the image is built, you can create and run a container from it:
docker run -p 8080:8080 my-node-app
Here is the result at the command line

Here is the result in the browser

Finally the container running in Docker Desktop

6