您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Dockerfile 433B

1234567891011121314151617181920212223
  1. FROM infiniflow/ragflow-base:v2.0
  2. USER root
  3. WORKDIR /ragflow
  4. ADD ./web ./web
  5. RUN cd ./web && npm i --force && npm run build
  6. ADD ./api ./api
  7. ADD ./conf ./conf
  8. ADD ./deepdoc ./deepdoc
  9. ADD ./rag ./rag
  10. ADD ./agent ./agent
  11. ADD ./graphrag ./graphrag
  12. ENV PYTHONPATH=/ragflow/
  13. ENV HF_ENDPOINT=https://hf-mirror.com
  14. ADD docker/entrypoint.sh ./entrypoint.sh
  15. ADD docker/.env ./
  16. RUN chmod +x ./entrypoint.sh
  17. ENTRYPOINT ["./entrypoint.sh"]