Hi, I am trying to setup tesseract in Docker on ubuntu 16 by following method given in tesseract-ocr-re <https://github.com/tesseract-shadow/tesseract-ocr-re/blob/master/Dockerfile> .
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 -- _This mail contains confidential information intended only for the individual(s) named. If you’re not the named addressee, don’t disseminate, distribute or copy this e-mail. Please notify the sender immediately and delete it from your system.If you wish not to receive such e-mails you may reply with text “Unsubscribe”._ -- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tesseract-ocr/c4c6d5c2-4e57-4f8a-bc6e-d5c3b0fe3cfa%40googlegroups.com.

