🚧 Add ocrd_cis (WIP)

This commit is contained in:
Gerber, Mike 2020-10-27 16:35:46 +01:00
parent 357cf86959
commit 560cfe3549
3 changed files with 27 additions and 0 deletions

18
Dockerfile-ocrd_cis Normal file
View file

@ -0,0 +1,18 @@
FROM my_ocrd_workflow-core
ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver"
ARG OCRD_CIS_VERSION="0.1.5"
# Build pip installable stuff
RUN ${PIP_INSTALL} \
# Now the real stuff:
"https://github.com/cisocrgroup/ocrd_cis/archive/v${OCRD_CIS_VERSION}.tar.gz"
# Check pip dependencies
RUN pip3 check
# Default command
CMD ["ocrd-cis-ocropy-segment"]