15 lines
482 B
Plaintext
15 lines
482 B
Plaintext
# To ensure app dependencies are ported from your virtual environment/host machine into your container, run 'pip freeze > requirements.txt' in the terminal to overwrite this file
|
|
{{#if (eq platform 'Python: Django')}}
|
|
django==5.0.1
|
|
{{/if}}
|
|
{{#if (eq platform 'Python: FastAPI')}}
|
|
fastapi[all]==0.109.0
|
|
uvicorn[standard]==0.27.0
|
|
{{/if}}
|
|
{{#if (eq platform 'Python: Flask')}}
|
|
flask==3.0.1
|
|
{{/if}}
|
|
{{#unless (eq platform 'Python: General')}}
|
|
gunicorn==21.2.0
|
|
{{/unless}}
|