docling/Dockerfile

30 lines
966 B
Docker
Raw Normal View History

2024-07-15 09:42:42 +02:00
FROM python:3.11-slim-bookworm
ENV GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no"
RUN apt-get update \
&& apt-get install -y libgl1 libglib2.0-0 curl wget git procps \
&& rm -rf /var/lib/apt/lists/*
2024-07-15 09:42:42 +02:00
# This will install torch with *only* cpu support
# Remove the --extra-index-url part if you want to install all the gpu requirements
# For more details in the different torch distribution visit https://pytorch.org/.
RUN pip install --no-cache-dir docling --extra-index-url https://download.pytorch.org/whl/cpu
2024-07-15 09:42:42 +02:00
ENV HF_HOME=/tmp/
ENV TORCH_HOME=/tmp/
COPY docs/examples/minimal.py /root/minimal.py
2024-07-15 09:42:42 +02:00
RUN docling-tools models download
2024-07-15 09:42:42 +02:00
# On container environments, always set a thread budget to avoid undesired thread congestion.
ENV OMP_NUM_THREADS=4
2024-07-15 09:42:42 +02:00
# On container shell:
# > cd /root/
# > python minimal.py
# Running as `docker run -e DOCLING_ARTIFACTS_PATH=/root/.cache/docling/models` will use the
# model weights included in the container image.