Hi, I built my first USEFUL docker setup. (it all works) Looking for advice on how it could be improved. It sets up an ubuntu machine to run a text recognition Flask server.

This page summarizes the projects mentioned and recommended in the original post on /r/docker

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • tesseract-ocr

    Tesseract Open Source OCR Engine (main repository)

  • FROM ubuntu:18.04 RUN apt-get update RUN apt-get -y install curl RUN apt-get -y install wget unzip RUN mkdir tess5 RUN cd tess5 RUN wget https://github.com/tesseract-ocr/tesseract/archive/refs/tags/5.0.0-alpha-20210401.zip RUN unzip 5.0.0-alpha-20210401.zip RUN rm 5.0.0-alpha-20210401.zip WORKDIR /tesseract-5.0.0-alpha-20210401 RUN apt-get -y install autoconf automake libtool pkg-config libpng-dev libjpeg8-dev libtiff5-dev g++ # or clang++ (presumably) RUN apt-get install zlib1g-dev RUN apt-get -y install libleptonica-dev RUN ./autogen.sh RUN ./configure --enable-debug RUN LDFLAGS="-L/usr/local/lib" CFLAGS="-I/usr/local/include" make RUN make install RUN ldconfig WORKDIR /usr/local/share/tessdata RUN wget https://github.com/tesseract-ocr/tessdata/raw/master/eng.traineddata ENV TESSDATA_PREFIX=/usr/local/share/tessdata/

  • tessdata

    Trained models with fast variant of the "best" LSTM models + legacy models

  • FROM ubuntu:18.04 RUN apt-get update RUN apt-get -y install curl RUN apt-get -y install wget unzip RUN mkdir tess5 RUN cd tess5 RUN wget https://github.com/tesseract-ocr/tesseract/archive/refs/tags/5.0.0-alpha-20210401.zip RUN unzip 5.0.0-alpha-20210401.zip RUN rm 5.0.0-alpha-20210401.zip WORKDIR /tesseract-5.0.0-alpha-20210401 RUN apt-get -y install autoconf automake libtool pkg-config libpng-dev libjpeg8-dev libtiff5-dev g++ # or clang++ (presumably) RUN apt-get install zlib1g-dev RUN apt-get -y install libleptonica-dev RUN ./autogen.sh RUN ./configure --enable-debug RUN LDFLAGS="-L/usr/local/lib" CFLAGS="-I/usr/local/include" make RUN make install RUN ldconfig WORKDIR /usr/local/share/tessdata RUN wget https://github.com/tesseract-ocr/tessdata/raw/master/eng.traineddata ENV TESSDATA_PREFIX=/usr/local/share/tessdata/

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • flask-tess5

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Multimodal AI: Bridging the Gap Between Human and Machine Understanding

    1 project | dev.to | 14 May 2024
  • Highlighting Image Text

    1 project | dev.to | 30 Apr 2024
  • one of the Codia AI Design technologies: OCR Technology

    1 project | dev.to | 14 Feb 2024
  • OCR text to speech for disability

    1 project | /r/AskProgramming | 10 Dec 2023
  • How to Read Text From an Image with Python

    1 project | dev.to | 23 Oct 2023