docker build -t flask-server .
. specifies current directory
docker run -d -p 8080:5000 --name test-container-1 flask-server
-d : runs the container in background I m using 8080 port just to show that , we can map any port on my laptop from the 5000 port of the container
docker stop test-container-1
docker rm my-python-app