Boilerplate for Flask applications with Waitress Production Server. Dockerized!
- python 3.9
pip install -r requirements.txt
python app.py
docker build -t python-flask-boilerplate .
docker run --name python-flask-boilerplate -p 8080:8080 python-flask-boilerplate
Enjoy!