We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e509502 commit dc1d150Copy full SHA for dc1d150
Dockerfile
@@ -2,10 +2,15 @@
2
FROM debian:stable
3
4
## Install linux / python dependencies
5
-RUN apt-get update -y && apt-get install -y python3 python3-pip tesseract-ocr ghostscript
+RUN apt-get update -y && apt-get install -y \
6
+ python3 \
7
+ python3-pip \
8
+ tesseract-ocr \
9
+ ghostscript \
10
+ ocrmypdf
11
12
## Install python project dependencies
-RUN pip3 install ocrmypdf
13
+# RUN pip3 install ocrmypdf # This can be skipped since we are now installing ocrmypdf via apt
14
15
## Copy the Entry Point
16
COPY entrypoint /usr/local/bin/
0 commit comments