Based on: crccheck/docker-hello-world
This is a simple image that just gives a response on port 8000.
$ docker images | grep hell
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
mattmahoneyrh/hello-world <> <> <> <>
$ build.sh
$ docker run -d --name os-demo -p 8080:8000 mattmahoneyrh/hello-world
Curl Exmaple
$ curl localhost:8080
Hello World
...