ocrd-galley/Dockerfile-ocrd_cis

20 lines
398 B
Text
Raw Normal View History

2023-03-15 17:04:59 +01:00
ARG GIT_COMMIT="latest"
FROM quratorspk/ocrd-galley-core:$GIT_COMMIT
2020-10-27 16:35:46 +01:00
ARG PIP_INSTALL="pip install --no-cache-dir"
2020-10-27 16:35:46 +01:00
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
2020-11-19 18:25:10 +01:00
RUN pip check
2020-10-27 16:35:46 +01:00
# Default command
CMD ["ocrd-cis-ocropy-segment"]