modified: Dockerfile

new file:   wsgi.py
This commit is contained in:
SimolZimol
2026-08-07 21:04:02 +02:00
parent 526b0353e7
commit c142198241
2 changed files with 7 additions and 1 deletions

View File

@@ -29,4 +29,4 @@ RUN useradd --create-home appuser && chown -R appuser:appuser /app
USER appuser
# Startbefehl (Production: Gunicorn)
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "--workers", "2", "--timeout", "120", "app:app"]
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "--workers", "2", "--timeout", "120", "wsgi:app"]