19 lines
333 B
Plaintext
19 lines
333 B
Plaintext
ARG DRONE_COMMIT="latest"
|
|
FROM quratorspk/ocrd-galley-core:$DRONE_COMMIT
|
|
|
|
ARG PIP_INSTALL="pip install --no-cache-dir"
|
|
ARG OCRD_WRAP_VERSION="0.1.7"
|
|
|
|
|
|
# Build pip installable stuff
|
|
RUN ${PIP_INSTALL} \
|
|
"ocrd_wrap == ${OCRD_WRAP_VERSION}"
|
|
|
|
|
|
# Check pip dependencies
|
|
RUN pip check
|
|
|
|
|
|
# Default command
|
|
CMD ["ocrd-preprocess-image"]
|