fix: python app.py вместо gunicorn

This commit is contained in:
2026-05-31 16:59:28 +03:00
parent 66358ac830
commit 9205492d01
+2 -2
View File
@@ -12,5 +12,5 @@ COPY . .
# Порт
EXPOSE 5000
# Запуск через gunicorn (production) или flask (dev)
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--workers", "2", "--timeout", "90", "app:application"]
# Запуск
CMD ["python", "app.py"]