目前我有这个
Dockerfile
FROM ubuntu:18.04
# https://github.com/tesseract-shadow/tesseract-ocr-re
RUN apt-get update && 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
RUN apt-get install -y git build-essential cmake
RUN apt-get install -y ffmpeg
# Install Node and NPM
RUN apt-get install nodejs -y && apt-get install npm -y
我发现阿尔卑斯山的图片太大了。
我被这件事缠住了
FROM alpine
RUN apk add --update ffmpeg cmake nodejs npm
查看aline edge存储库,我似乎找不到
tesseract-ocr-all
不知道该怎么做
apt-get install -y software-properties-common && add-apt-repository -y ppa:alex-p/tesseract-ocr
在阿尔卑斯山。
有什么资源可以帮我解决这个问题吗?我应该为这些软件包/存储库制作自己的阿尔卑斯山图像吗?