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