leonsimon23 commited on
Commit
b94ef5c
·
verified ·
1 Parent(s): 6cd46ec

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -25,5 +25,5 @@ RUN pip install gunicorn
25
  # 暴露端口 (Hugging Face Spaces通常使用7860)
26
  EXPOSE 7860
27
 
28
- # 启动应用的命令
29
- CMD ["gunicorn", "--bind", "0. 0.0.0:7860", "app:app"]
 
25
  # 暴露端口 (Hugging Face Spaces通常使用7860)
26
  EXPOSE 7860
27
 
28
+ # 启动应用的命令 (已修正IP地址中的空格)
29
+ CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]