GraphRAG_Backend / Dockerfile
KirkHan's picture
Upload 8 files
a990ce3 verified
raw
history blame contribute delete
622 Bytes
FROM python:3.11-slim
WORKDIR /app
# 安装系统依赖
RUN apt-get update && apt-get install -y \
git \
&& rm -rf /var/lib/apt/lists/*
# 复制 requirements.txt
COPY requirements.txt .
# 安装 Python 依赖
RUN pip install --no-cache-dir -r requirements.txt
# 复制应用代码和依赖文件
COPY app.py .
COPY database_setup_lite.py .
COPY rag_engine.py .
COPY mock_data.json .
# 暴露端口(HF Spaces 使用 7860)
EXPOSE 7860
# 设置环境变量
ENV PORT=7860
ENV TOKENIZERS_PARALLELISM=false
# 启动应用(使用 uvicorn)
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]