2020-08-14 17:52:57 +02:00
|
|
|
FROM my_ocrd_workflow-core
|
2020-08-14 14:37:20 +02:00
|
|
|
|
2020-11-19 18:25:10 +01:00
|
|
|
ARG PIP_INSTALL="pip install --no-cache-dir --use-feature=2020-resolver"
|
2020-10-23 17:44:01 +02:00
|
|
|
ARG DINGLEHOPPER_COMMIT="6e47acd"
|
2020-08-14 14:37:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Build pip installable stuff
|
2020-09-25 16:11:11 +02:00
|
|
|
RUN ${PIP_INSTALL} \
|
2020-08-14 14:37:20 +02:00
|
|
|
# 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
|
2020-08-14 14:37:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Default command
|
|
|
|
CMD ["ocrd-dinglehopper"]
|