Very simple Flask app running in container
docker build -t python-flask-hello-world:latest .
docker run -d -p 5000:5000 python-flask-hello-world
docker login <FQDN>:<PORT>
docker tag <ContainerID> <FQDN>:<PORT>/python-flask-hello-world
docker push <FQDN>:<PORT>/python-flask-hello-world