mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-05-28 17:18:30 +08:00

Fix the `Dockerfile.cuda`, as the `/root/miniconda3/envs/py11/bin/pip` is not found in the base images. ### What problem does this PR solve? `/root/miniconda3/envs/py11/bin/pip` is not found in the base images. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) - [ ] New Feature (non-breaking change which adds functionality) - [ ] Documentation Update - [ ] Refactoring - [ ] Performance Improvement - [ ] Other (please describe):
27 lines
620 B
Docker
27 lines
620 B
Docker
FROM infiniflow/ragflow-base:v2.0
|
|
USER root
|
|
|
|
WORKDIR /ragflow
|
|
|
|
## for cuda > 12.0
|
|
RUN pip uninstall -y onnxruntime-gpu
|
|
RUN pip install onnxruntime-gpu --extra-index-url https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/onnxruntime-cuda-12/pypi/simple/
|
|
|
|
|
|
ADD ./web ./web
|
|
RUN cd ./web && npm i --force && npm run build
|
|
|
|
ADD ./api ./api
|
|
ADD ./conf ./conf
|
|
ADD ./deepdoc ./deepdoc
|
|
ADD ./rag ./rag
|
|
ADD ./graph ./graph
|
|
|
|
ENV PYTHONPATH=/ragflow/
|
|
ENV HF_ENDPOINT=https://hf-mirror.com
|
|
|
|
ADD docker/entrypoint.sh ./entrypoint.sh
|
|
RUN chmod +x ./entrypoint.sh
|
|
|
|
ENTRYPOINT ["./entrypoint.sh"]
|