ocrd-galley/Dockerfile-ocrd_trocr

18 lines
324 B
Text
Raw Normal View History

FROM ocrd/all:maximum
2023-04-05 11:57:52 +02:00
ARG PIP_INSTALL="pip3 install --no-cache-dir"
ARG OCRD_TROCR_COMMIT="30696cb"
2023-04-05 11:57:52 +02:00
# 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"]