code / docker.txt
jkushwaha's picture
Create docker.txt
9366a64 verified
raw
history blame contribute delete
440 Bytes
RUN apt-get update && apt-get install -y wget
RUN wget www.leptonica.org/source/leptonica-1.78.0.tar.gz
RUN tar -xvzf leptonica-1.78.0.tar.gz
WORKDIR /leptonica-1.78.0
RUN ./configure
RUN make
RUN make install
WORKDIR /
RUN git clone https://github.com/tesseract-ocr/tesseract.git
WORKDIR /tesseract
RUN ./autogen.sh
RUN ./configure
RUN make
RUN make install
RUN export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib ffmpeg
RUN ldconfig