25 lines
601 B
Docker
25 lines
601 B
Docker
# 使用 RAGFlow v0.17.2-slim 镜像作为基础
|
|
FROM infiniflow/ragflow:v0.17.2-slim
|
|
|
|
# 设置工作目录(与基础镜像保持一致)
|
|
WORKDIR /ragflow
|
|
|
|
# 复制 Python 相关代码目录
|
|
COPY api ./api
|
|
COPY conf ./conf
|
|
COPY rag ./rag
|
|
COPY graphrag ./graphrag
|
|
COPY agentic_reasoning ./agentic_reasoning
|
|
|
|
|
|
# 复制前端源代码目录
|
|
COPY web ./web
|
|
|
|
# 复制 Docker 相关文件
|
|
COPY docker/service_conf.yaml.template ./conf/service_conf.yaml.template
|
|
COPY docker/entrypoint.sh ./entrypoint.sh
|
|
|
|
RUN chmod +x ./entrypoint.sh
|
|
|
|
# 重新构建前端应用
|
|
RUN cd web && npm install && npm run build |