mirror of
https://github.com/qurator-spk/ocrd-galley.git
synced 2025-06-08 22:29:56 +02:00
26 lines
479 B
Text
26 lines
479 B
Text
|
FROM ubuntu:18.04
|
||
|
|
||
|
ENV LC_ALL=C.UTF-8 LANG=C.UTF-8
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install -y \
|
||
|
git \
|
||
|
libleptonica-dev \
|
||
|
libtesseract-dev \
|
||
|
libxml2-utils \
|
||
|
python3-pip \
|
||
|
tesseract-ocr-all \
|
||
|
xmlstarlet \
|
||
|
&& \
|
||
|
apt-get clean
|
||
|
|
||
|
COPY requirements.txt /tmp
|
||
|
RUN pip3 install --no-cache-dir -r /tmp/requirements.txt
|
||
|
|
||
|
COPY my_ocrd_workflow /usr/bin
|
||
|
COPY xsd /usr/bin/xsd
|
||
|
|
||
|
|
||
|
WORKDIR /data
|
||
|
CMD ["/usr/bin/my_ocrd_workflow"]
|