Deploying Docker Container using Base Python3 Linux Image - Assignment
Create 3 files – dockerfile requirement.txt and python web app i.e. app.py
Build images - docker build -t my_flask_app .
Run the docker image - docker run -p 5000:5000 my_flask_app
Output – Hello world should be the output with usrl and port 5050