Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 422 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 422 Bytes

flask-uwsgi-nginx

Use Official Nginx Docker Image to build a uWSGI aware Flask Container

Usage

there must be a web_app/ folder that contains the flask app.

in web_app folder there must be:

  • requirements.txt
  • wsgi.py

and you must import your flask application as web_app in wsgi.py:

import your_flask_app.app as web_app

see flask-helloworld