mirror of
https://github.com/qurator-spk/ocrd-galley.git
synced 2025-06-09 22:59:53 +02:00
🎨 Rename boxed-* to my_ocrd_workflow-*
This commit is contained in:
parent
a820d72526
commit
73ffa01d12
8 changed files with 17 additions and 17 deletions
|
@ -1,35 +0,0 @@
|
|||
FROM boxed-core
|
||||
|
||||
|
||||
ENV TESSDATA_BEST_VERSION 4.0.0
|
||||
ENV TESSDATA_PREFIX /usr/local/share/tessdata
|
||||
|
||||
|
||||
# Install Leptonica and Tesseract.
|
||||
RUN add-apt-repository ppa:alex-p/tesseract-ocr && \
|
||||
apt-get update && \
|
||||
apt-get install -y \
|
||||
tesseract-ocr \
|
||||
libtesseract-dev \
|
||||
&& \
|
||||
apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
|
||||
# Copy OCR models
|
||||
RUN mkdir -p $TESSDATA_PREFIX
|
||||
ADD data/mirror/github.com/tesseract-ocr/tessdata_best/archive/${TESSDATA_BEST_VERSION}-repacked.tar.gz $TESSDATA_PREFIX/
|
||||
COPY data/tesseract-models/GT4HistOCR/GT4HistOCR_2000000.traineddata $TESSDATA_PREFIX/
|
||||
|
||||
|
||||
# Build pip installable stuff
|
||||
RUN pip3 install --no-cache-dir \
|
||||
# Now the real stuff:
|
||||
'ocrd_tesserocr >= 0.9.0'
|
||||
|
||||
|
||||
# Check pip dependencies
|
||||
RUN pip3 check
|
||||
|
||||
|
||||
# Default command
|
||||
CMD ["ocrd-tesserocr-recognize"]
|
Loading…
Add table
Add a link
Reference in a new issue