This commit is contained in:
renzhiyuan 2025-08-05 10:40:31 +08:00
parent 2696e55163
commit 0751ddb15a
1 changed files with 2 additions and 1 deletions

View File

@ -19,4 +19,5 @@ RUN pip install --no-cache-dir -r requirements.txt -i https://mirrors.aliyun.com
EXPOSE 5000
# 启动命令(使用 Gunicorn 替代 Flask 开发服务器)
CMD ["waitress-serve", "--host", "0.0.0.0:5000", "--port", "5000", "app:app"]
#CMD ["waitress-serve", "--host", "0.0.0.0:5000", "--port", "5000", "app:app"]
CMD ["flask ","run ", "--host=", "0.0.0.0:5000", "--port=", "5000", "app:app"]