代码拉取完成,页面将自动刷新
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"]
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。