Move Dockerfiles out of root

This commit is contained in:
James R. Barlow
2017-03-10 17:17:36 -08:00
parent 7cd2770a13
commit 3d3b3abc1b
4 changed files with 0 additions and 0 deletions
-19
View File
@@ -1,19 +0,0 @@
# OCRmyPDF polyglot
#
# VERSION 4.4.2
FROM jbarlow83/ocrmypdf:latest
MAINTAINER James R. Barlow <jim@purplerock.ca>
USER root
# Update system and install our dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
tesseract-ocr-all
RUN apt-get autoremove -y && apt-get clean -y
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"]