Simple Python Flask to sum of two numbers
Steps to run:-
- Download Docker on your host
- Start the docker service
- Clone the repository on your workspace
git clone https://github.com/jayramr/simple-addition.git
- Navigate to the code directory
- Create the image build
docker build -t <name-of-image> .
- Start the container
docker run -p 80:80 <name-of-image>
- Launch browser and hit "localhost"