gallyg commited on
Commit
47ba321
·
verified ·
1 Parent(s): 79352cc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -25,7 +25,7 @@ RUN pip install --no-cache-dir -r requirements.txt
25
  RUN mkdir -p data logs
26
 
27
  # Hugging Face Space 默认暴露并映射 7860 端口
28
- EXPOSE 8000
29
 
30
  # 启动 网页UI,指定 Host 为 0.0.0.0 并绑定至 7860 端口
31
- CMD["python", "webui.py", "--host", "0.0.0.0", "--port", "8000"]
 
25
  RUN mkdir -p data logs
26
 
27
  # Hugging Face Space 默认暴露并映射 7860 端口
28
+ EXPOSE 7860
29
 
30
  # 启动 网页UI,指定 Host 为 0.0.0.0 并绑定至 7860 端口
31
+ CMD["python", "webui.py", "--host", "0.0.0.0", "--port", "7860"]