Редактировать Dockerfile

This commit is contained in:
Slava
2025-03-03 16:58:57 +00:00
parent 98d9863ffd
commit 241d464242

View File

@@ -19,4 +19,4 @@ EXPOSE 5050
HEALTHCHECK --interval=30s --timeout=10s --retries=3 \
CMD python3 test.py
CMD ["gunicorn", "--workers", "4", "--bind", "0.0.0.0:5050", "app:proxy_app"]
CMD ["gunicorn", "--workers", "4", "--bind", "0.0.0.0:5050", "app.__init__:proxy_app"]