加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 806 Bytes
一键复制 编辑 原始数据 按行查看 历史
williamfzc 提交于 2019-07-30 00:01 . fix(docker): tesseract bug
FROM python:3-slim
USER root
WORKDIR /usr/src/app
COPY ./requirements.txt .
RUN apt-get update \
# opencv
&& apt-get install -y libglib2.0 libsm6 libxrender1 libxext-dev \
# ocr
&& apt-get -y install gcc build-essential tesseract-ocr tesseract-ocr-chi-sim libtesseract-dev libleptonica-dev pkg-config \
&& pip install --no-cache-dir -r requirements.txt
COPY . .
RUN pip install --no-cache-dir . \
&& pip install --no-cache-dir Pillow \
&& pip install --no-cache-dir tesserocr \
&& pip install --no-cache-dir findtext \
&& pip install --no-cache-dir jieba \
&& apt-get purge -y --auto-remove gcc build-essential \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
ENV LC_ALL=C
EXPOSE 9410
CMD ["python", "-m", "findit.server", "--dir", "/root/pics"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化