From a37d18bf7aac8c25dfafcae23c6559811e50bee1 Mon Sep 17 00:00:00 2001 From: Mathias Bergqvist Date: Thu, 23 Apr 2026 16:02:12 +0200 Subject: [PATCH] chore(docker): add poppler-utils for PDF text extraction --- ingestion/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ingestion/Dockerfile b/ingestion/Dockerfile index 4e9ebc5..bf91361 100644 --- a/ingestion/Dockerfile +++ b/ingestion/Dockerfile @@ -15,6 +15,8 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 \ FROM alpine:3.21 +RUN apk add --no-cache poppler-utils + COPY --from=builder /out/ingestion /usr/local/bin/ingestion RUN addgroup -S ingestion && adduser -S -G ingestion ingestion