You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
378 B
Docker
21 lines
378 B
Docker
FROM ocrd/core:edge
|
|
MAINTAINER OCR-D
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
ENV PYTHONIOENCODING utf8
|
|
ENV LC_ALL C.UTF-8
|
|
ENV LANG C.UTF-8
|
|
|
|
WORKDIR /build
|
|
COPY Makefile .
|
|
COPY setup.py .
|
|
COPY ocrd-tool.json .
|
|
COPY requirements.txt .
|
|
COPY README.md .
|
|
COPY ocrd_calamari ocrd_calamari
|
|
|
|
RUN make calamari/build
|
|
RUN pip3 install .
|
|
|
|
ENTRYPOINT ["/usr/local/bin/ocrd-calamari-recognize"]
|
|
|