This is a simple dockerized flask app with a VSCode debugger setup
You can find the complete tutorial on how this works here
python -m venv venv
For Windows users
./venv/Scripts/activate
For Mac or Linux users:
source venv/bin/activate
Install dependencies
pip install -r requirements.txt
docker-compose up -d
Press F5 in VSCode and start debugging.