File size: 570 Bytes
06ba7ea | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | # 基础镜像
FROM python:3.11-slim
# 设置工作目录
WORKDIR /app
# 复制文件
COPY requirements.txt .
COPY run.sh .
COPY src/ ./src/
COPY agent_fastapi.py .
COPY cli.py .
COPY config.toml .
COPY web/ ./web/
COPY prompts/ ./prompts/
COPY .storyline/ ./.storyline/
COPY download.sh .
# 安装依赖
RUN apt-get update && apt-get install -y ffmpeg wget unzip git git-lfs curl
RUN pip install --no-cache-dir -r requirements.txt
# 下载
RUN chmod +x download.sh
RUN ./download.sh
# 暴露 HF Space 默认端口
EXPOSE 7860
# 启动命令
CMD ["bash", "run.sh"] |