new dockerfile with gunicorn and wsgi support

This commit is contained in:
Alex
2023-02-28 11:59:37 +00:00
parent ed79ad6b8c
commit 38e2459c7f
4 changed files with 9 additions and 3 deletions

4
application/wsgi.py Normal file
View File

@@ -0,0 +1,4 @@
from app import app
if __name__ == "__main__":
app.run()