This project helps us understand and know how to dockerize an application (python flask in this case)
- Tech stack:
python,docker,flask - To get basic concept of these tools, you could visit: devops-basic repository
- You have docker installed on your machine
- Basic knowledge about docker
- Run
docker build -t my-flask-app .
- Run
docker run -p 5000:5000 my-flask-app
curl localhost:5000- Or open http://localhost:5000/ in your browser
All in one script could be found at demo_project.sh