From f59c60310d1cdef905341b181e0abbc7163845b0 Mon Sep 17 00:00:00 2001 From: Anthony R Date: Mon, 4 Nov 2024 19:49:24 +0100 Subject: [PATCH] fix: Dockerfile example copy Signed-off-by: Anthony R --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9bed78f3..c863f1c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ RUN pip install --no-cache-dir docling --extra-index-url https://download.pytorc ENV HF_HOME=/tmp/ ENV TORCH_HOME=/tmp/ -COPY examples/minimal.py /root/minimal.py +COPY docs/examples/minimal.py /root/minimal.py RUN python -c 'from deepsearch_glm.utils.load_pretrained_models import load_pretrained_nlp_models; load_pretrained_nlp_models(verbose=True);' RUN python -c 'from docling.pipeline.standard_pdf_pipeline import StandardPdfPipeline; StandardPdfPipeline.download_models_hf(force=True);'