1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
This commit is contained in:
kev 2015-07-16 22:44:23 +08:00
parent 4680e2e0f3
commit 5cf6e66001

@ -13,19 +13,21 @@ RUN apt-get update \
libleptonica-dev \
libtool \
&& git clone https://github.com/tesseract-ocr/tesseract.git \
&& cd tesseract \
&& ./autogen.sh \
&& ./configure \
&& make install \
&& cd .. \
&& git clone https://github.com/tesseract-ocr/tessdata.git \
&& mv -v tessdata/* tesseract/tessdata/ \
&& cd tesseract \
&& ./autogen.sh \
&& ./configure \
&& make install install-langs \
&& cd .. \
&& rm -rf tesseract tessdata /var/cache/apk/* \
&& cd tessdata \
&& mv * /usr/local/lib/tessdata/ \
&& cd .. \
&& apt-get purge --auto-remove -y autoconf \
build-essential \
git \
libleptonica-dev \
libtool
libtool \
&& rm -rf tesseract tessdata /var/cache/apk/*
ENTRYPOINT ["tesseract"]
CMD ["-h"]