| FROM python:3.11-slim | |
| WORKDIR /app | |
| # 系统依赖 | |
| RUN apt-get update && \ | |
| apt-get install -y --no-install-recommends \ | |
| libgl1-mesa-glx libglib2.0-0 && \ | |
| rm -rf /var/lib/apt/lists/* | |
| # Python 依赖 | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # 复制代码 | |
| COPY . . | |
| # 创建临时目录 | |
| RUN mkdir -p /tmp/image_prompts | |
| # HF Spaces 端口 | |
| EXPOSE 7860 | |
| # 启动 | |
| CMD ["python", "app.py"] | |