🚧 Add WIP support for ocrd_trocr

This commit is contained in:
Gerber, Mike 2023-04-05 11:57:52 +02:00
parent 2a2bfa337c
commit 6b78303ca2
3 changed files with 31 additions and 0 deletions

18
Dockerfile-ocrd_trocr Normal file
View file

@ -0,0 +1,18 @@
ARG GIT_COMMIT="latest"
FROM quratorspk/ocrd-galley-core:$GIT_COMMIT
ARG PIP_INSTALL="pip install --no-cache-dir"
ARG OCRD_TROCR_COMMIT="250ff1c"
# 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"]