If you want to embed images, this is how you do it:
Build image from Dockerfile
docker build -t getting-started-nodejs .
Run container
docker run -dp 3000:3000 getting-started-nodejs
Execute commands inside a container
docker exec -it <container_id> /bin/sh