#Pre-Requisite
- ssh to a linux box with git client setup
- yum install -y docker
- usermod -a -G docker ec2-user # add ec2-user to docker group
#Steps to deploy the application
- Download the source code zip file
- Build the image with
docker build -t my-flask-app .
- Start the container with
docker run -d -p 5000:5000 my-flask-app