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.
18 lines
324 B
Plaintext
18 lines
324 B
Plaintext
FROM ocrd/all:maximum
|
|
|
|
ARG PIP_INSTALL="pip3 install --no-cache-dir"
|
|
ARG OCRD_TROCR_COMMIT="30696cb"
|
|
|
|
|
|
# Build pip installable stuff
|
|
RUN ${PIP_INSTALL} \
|
|
https://github.com/qurator-spk/ocrd_trocr/archive/$OCRD_TROCR_COMMIT.tar.gz
|
|
|
|
|
|
# Check pip dependencies
|
|
RUN pip check
|
|
|
|
|
|
# Default command
|
|
CMD ["ocrd-trocr-recognize"]
|