[verified] add docling auto-map package wrapper
api-ci-deploy / test-build-deploy (push) Has been cancelled

This commit is contained in:
2026-06-07 20:03:06 +01:00
parent 9cc986a3f1
commit 5938613893
17 changed files with 2861 additions and 0 deletions
+5
View File
@@ -6,6 +6,11 @@ FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Runtime dependency for api.services.docling fast-path geometry (pdftotext -bbox).
RUN apt-get update \
&& apt-get install -y --no-install-recommends poppler-utils \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt