Spaces:
Build error
Build error
File size: 609 Bytes
83ec0f7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # 使用 Ollama 官方镜像作为基础
FROM ollama/ollama:latest
# 安装 Python3 和 pip
RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
# 安装 Gradio 和 requests
RUN pip3 install gradio requests
# 在构建阶段拉取模型(避免每次启动都下载)
RUN ollama pull huihui_ai/deepseek-r1-abliterated:1.5b
# 复制应用脚本和启动脚本
COPY app.py /app.py
COPY start.sh /start.sh
RUN chmod +x /start.sh
# 暴露 Gradio 服务端口(Hugging Face Space 默认使用 7860)
EXPOSE 7860
# 启动容器时执行启动脚本
CMD ["/start.sh"] |