Bug: added gunicorn config file

This commit is contained in:
Javier
2026-02-08 01:53:03 -06:00
parent 3b9680455c
commit b41e64be64
3 changed files with 13 additions and 2 deletions

View File

@@ -12,4 +12,4 @@ COPY . .
EXPOSE 5000
# Run with Gunicorn
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--workers", "4", "--timeout", "120", "--access-logfile", "-", "--error-logfile", "-", "app:app"]
CMD ["gunicorn", "--config", "gunicorn_config.py", "--bind", "0.0.0.0:5000", "--workers", "4", "app:app"]