File size: 270 Bytes
dad2aa3
c92b0fb
dad2aa3
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
# Hugging Face Spaces Dockerfile
# 直接使用预构建镜像
FROM ghcr.io/lieben/baojimi-lite:latest

# 暴露端口(Hugging Face Spaces 使用 7860)
EXPOSE 7860

# 启动命令
CMD ["python", "-m", "uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]