Hi,
I am trying to setup tesseract in Docker on ubuntu 16 by following method given in
tesseract-ocr-re.
Below is how my docker file looks like
FROM ubuntu:16.04
RUN apt-get update && apt-get upgrade -y && apt-get install -y software-properties-common && add-apt-repository -y ppa:alex-p/tesseract-ocr
RUN apt-get update && apt-get install -y tesseract-ocr-all
I'm not getting any error while making the docker image. But when I am trying to run tesseract from the shell of my container I am getting this weird error.
root@760677a9c7c4:/# tesseract
tesseract: symbol lookup error: tesseract: undefined symbol: archive_version_details
I also tried to manually install some of the packages like -
apt-get install g++ autoconf automake libtool pkg-config libpng-dev
But still getting the same error. Any help would be much appreciated.
Thanks