mirror of
https://github.com/ocrmypdf/OCRmyPDF.git
synced 2026-05-06 13:47:41 -04:00
13 lines
429 B
Docker
13 lines
429 B
Docker
# OCRmyPDF polyglot
|
|
#
|
|
# VERSION 3.0.2
|
|
FROM jbarlow83/ocrmypdf:latest
|
|
MAINTAINER James R. Barlow <jim@purplerock.ca>
|
|
|
|
# Update system and install our dependencies
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
tesseract-ocr-all
|
|
|
|
# Must use array form of ENTRYPOINT
|
|
# Non-array form does not append other arguments, because that is "intuitive"
|
|
ENTRYPOINT ["/application/docker-wrapper.sh"] |