ocrd-galley/Dockerfile-dinglehopper

20 lines
395 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"
2022-08-23 19:16:11 +02:00
ARG DINGLEHOPPER_COMMIT="dcc10c5"
# Build pip installable stuff
RUN ${PIP_INSTALL} \
# Now the real stuff:
https://github.com/qurator-spk/dinglehopper/archive/$DINGLEHOPPER_COMMIT.tar.gz
# Check pip dependencies
2020-11-19 18:25:10 +01:00
RUN pip check
# Default command
CMD ["ocrd-dinglehopper"]