Files
ocrmypdf/Dockerfile.polyglot
T

16 lines
450 B
Docker
Raw Normal View History

# OCRmyPDF polyglot
#
2016-02-05 16:08:26 -08:00
# VERSION 3.2
FROM jbarlow83/ocrmypdf:latest
MAINTAINER James R. Barlow <jim@purplerock.ca>
# Update system and install our dependencies
2016-02-05 00:52:27 -08:00
USER root
RUN apt-get update && apt-get install -y --no-install-recommends \
tesseract-ocr-all
2016-02-05 00:52:27 -08:00
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"]