Skip to content

Commit

Permalink
add docker image for tesseract runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
stpabhi committed Oct 27, 2022
1 parent 2ac946b commit 4356ee4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM ubuntu:22.04

ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt install -yq --no-install-recommends \
software-properties-common gpg-agent\
&& add-apt-repository -y ppa:alex-p/tesseract-ocr-devel \
&& apt install -y tesseract-ocr-all \
&& apt update \
&& apt clean && \
rm -rf /var/lib/apt/lists/*

0 comments on commit 4356ee4

Please sign in to comment.