You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all -- Thanks for putting together this repo and hosting these images.
Currently, the Docker images built by this repo is using Flask as a HTTP server:
mozillatts_1 | * Serving Flask app "mozillatts" (lazy loading)
mozillatts_1 | * Environment: production
mozillatts_1 | WARNING: This is a development server. Do not use it in a production deployment.
mozillatts_1 | Use a production WSGI server instead.
As the official documentation indicates, Flask’s built-in server is not suitable for production as it doesn’t scale well. This goes against the philosophy of containerization in the first place and is subject to security issues.
Kindly consider migrate to other HTTP server implementations such as gunicorn.
The text was updated successfully, but these errors were encountered:
First of all -- Thanks for putting together this repo and hosting these images.
Currently, the Docker images built by this repo is using Flask as a HTTP server:
As the official documentation indicates, Flask’s built-in server is not suitable for production as it doesn’t scale well. This goes against the philosophy of containerization in the first place and is subject to security issues.
Kindly consider migrate to other HTTP server implementations such as
gunicorn
.The text was updated successfully, but these errors were encountered: