Simple hello world Flask App tutorial with Docker Containerization and Systemd Unit file.
Install gunicorn using pip
$ pip install gunicorn
Running the WSGI gunicorn server
$ gunicorn -b 0.0.0.0:8000 app.wsgi:app
- how to avoid venv being copied into Docker Image?
- how to inspect files/folders contained into Docker image
- What is right structure convention for the python project
- How to write testcase assertions using pytest for JSON attributes