fix: reduce default number of workers in Dockerfile to improve resource management

This commit is contained in:
Lan
2026-01-26 12:14:11 +08:00
parent 7f46c58898
commit f1c09b0b20
+1 -1
View File
@@ -41,7 +41,7 @@ RUN pip install --no-cache-dir -r requirements.txt
# 环境变量配置
ENV HOST="::" \
PORT=12345 \
WORKERS=4 \
WORKERS=1 \
LOG_LEVEL="info"
EXPOSE 12345