docker build -t workshop/hello-world .
docker run -it --name python-hello-world -d -p81:81 workshop/hello-world
docker logs python-hello-world
curl -X GET localhost:81
curl -X POST localhost:81
curl localhost:81/home
docker stop python-hello-world && docker rm python-hello-world