File size: 277 Bytes
8887e47 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM infiniflow/ragflow-base:v1.0
WORKDIR /ragflow
COPY . ./
RUN cd ./web && npm i && npm build
ENV PYTHONPATH=/ragflow
ENV HF_ENDPOINT=https://hf-mirror.com
COPY docker/entrypoint.sh ./
RUN chmod +x ./entrypoint.sh
ENTRYPOINT ["/bin/bash", "./entrypoint.sh"] |