From 322725be04e99e1f6beaa546e03819fdc3a26850 Mon Sep 17 00:00:00 2001 From: cybermaggedon Date: Thu, 20 Mar 2025 09:38:54 +0000 Subject: [PATCH] Fix container build (#325) --- containers/Containerfile.ocr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/Containerfile.ocr b/containers/Containerfile.ocr index 1b1fa4b0..8a454008 100644 --- a/containers/Containerfile.ocr +++ b/containers/Containerfile.ocr @@ -22,12 +22,12 @@ RUN pip3 install --no-cache-dir pytesseract pulsar-client==3.5.0 FROM base AS build COPY trustgraph-base/ /root/build/trustgraph-base/ -COPY trustgraph-tesseract/ /root/build/trustgraph-tesseract/ +COPY trustgraph-ocr/ /root/build/trustgraph-ocr/ WORKDIR /root/build/ RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-base/ -RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-tesseract/ +RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-ocr/ RUN ls /root/wheels