ocrd-galley/Dockerfile-dinglehopper

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:$GIT_COMMIT
ARG PIP_INSTALL="pip install --no-cache-dir"
2023-08-07 19:45:29 +02:00
ARG DINGLEHOPPER_VERSION="0.9.2"
# Build pip installable stuff
RUN ${PIP_INSTALL} \
2023-08-07 19:45:29 +02:00
"dinglehopper == $DINGLEHOPPER_VERSION"
# Check pip dependencies
2020-11-19 18:25:10 +01:00
RUN pip check
# Default command
CMD ["ocrd-dinglehopper"]