ocrd-galley/Dockerfile-eynollah

19 lines
336 B
Text
Raw Normal View History

2023-03-15 17:04:59 +01:00
ARG GIT_COMMIT="latest"
FROM quratorspk/ocrd-galley-core-cuda12.1:$GIT_COMMIT
ARG PIP_INSTALL="pip install --no-cache-dir"
2022-03-03 16:59:52 +01:00
ARG EYNOLLAH_VERSION="0.0.10"
# Build pip installable stuff
RUN ${PIP_INSTALL} \
2021-05-11 13:28:26 +02:00
"eynollah == ${EYNOLLAH_VERSION}"
# Check pip dependencies
RUN pip check
# Default command
CMD ["ocrd-eynollah-segment"]