booksp / Dockerfile
aimdeepcafe's picture
Update Dockerfile
c92b0fb verified
raw
history blame contribute delete
270 Bytes
# 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"]