Spaces:
Sleeping
Sleeping
| # AIClient-2-API for Hugging Face Spaces | |
| FROM justlikemaki/aiclient-2-api:latest | |
| # 复制配置文件到 /app/configs | |
| COPY ./configs /app/configs | |
| # 暴露端口 | |
| EXPOSE 7860 | |
| # 健康检查 | |
| HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \ | |
| CMD curl -f http://localhost:7860/health || exit 1 | |
| # 直接运行 API server,监听 7860 端口 | |
| CMD ["node", "src/services/api-server.js", "--port", "7860"] | |