1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
This commit is contained in:
kev 2015-07-16 22:24:25 +08:00
parent 75be6a5a04
commit 4680e2e0f3
3 changed files with 23 additions and 3 deletions

@ -14,11 +14,11 @@ RUN apt-get update \
libtool \
&& git clone https://github.com/tesseract-ocr/tesseract.git \
&& git clone https://github.com/tesseract-ocr/tessdata.git \
&& mv -v tessdata/*.traineddata tesseract/tessdata/ \
&& mv -v tessdata/* tesseract/tessdata/ \
&& cd tesseract \
&& ./autogen.sh \
&& ./configure \
&& make install \
&& make install install-langs \
&& cd .. \
&& rm -rf tesseract tessdata /var/cache/apk/* \
&& apt-get purge --auto-remove -y autoconf \

20
tesseract/README.md Normal file

@ -0,0 +1,20 @@
tesseract
=========
![](https://badge.imagelayers.io/vimagick/tesseract:latest.svg)
`Tesseract` is an Open Source OCR engine, available under the Apache 2.0
license. It can be used directly, or (for programmers) using an API. It
supports a wide variety of languages.
Tesseract doesn't have a built-in GUI, but there are several available from the
3rdParty page.
Quick Start
-----------
```
$ alias tesseract='docker run --rm -v `pwd`:/work -w /work vimagick/tesseract'
$ tesseract myscan.png out
$ cat out.txt
```

@ -1,7 +1,7 @@
tinc
====
[![](https://badge.imagelayers.io/vimagick/tinc:latest.svg)](https://imagelayers.io/?images=vimagick/tinc:latest)
![](https://badge.imagelayers.io/vimagick/tinc:latest.svg)
[`tinc`][1] is a Virtual Private Network (VPN) daemon that uses tunnelling and
encryption to create a secure private network between hosts on the Internet.