Spaces:
Paused
Paused
| # 使用官方Python镜像作为基础镜像 | |
| FROM python:3.9 | |
| # 设置工作目录 | |
| WORKDIR /app | |
| # 复制项目文件到工作目录 | |
| COPY . /app | |
| # 安装项目依赖 | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # 测试网络连接 | |
| RUN apt-get update && apt-get install -y curl | |
| RUN curl -I https://huggingface.co/chat/ | |
| # 暴露应用端口 | |
| EXPOSE 8000 | |
| # 启动应用 | |
| CMD ["python", "app.py"] | |