Fix container build (#325)

This commit is contained in:
cybermaggedon 2025-03-20 09:38:54 +00:00 committed by GitHub
parent c759d55734
commit 322725be04
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,12 +22,12 @@ RUN pip3 install --no-cache-dir pytesseract pulsar-client==3.5.0
FROM base AS build FROM base AS build
COPY trustgraph-base/ /root/build/trustgraph-base/ COPY trustgraph-base/ /root/build/trustgraph-base/
COPY trustgraph-tesseract/ /root/build/trustgraph-tesseract/ COPY trustgraph-ocr/ /root/build/trustgraph-ocr/
WORKDIR /root/build/ WORKDIR /root/build/
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-base/ 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 RUN ls /root/wheels