1 Star 0 Fork 0

liuguoxionglang/TextRecognitionDataGenerator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 858 Bytes
一键复制 编辑 原始数据 按行查看 历史
Edouard Belval 提交于 2020-04-24 18:44 . Add tests
# We use Ubuntu as base image
FROM ubuntu:18.04
WORKDIR /app
# Install dependencies
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y \
git \
locales \
python3-pip \
libsm6 \
libfontconfig1 \
libxrender1 \
zlib1g-dev \
libjpeg-dev \
libpng-dev \
libfreetype6-dev \
libxext6 \
libraqm-dev \
&& rm -rf /var/lib/apt/lists/*
# Set the locale
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
locale-gen
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
COPY . /app/
RUN git clone https://github.com/python-pillow/Pillow.git \
&& cd Pillow \
&& git checkout 7.0.x \
&& python3 setup.py build_ext --enable-freetype install
RUN python3 setup.py install
RUN pip3 install -r requirements.txt
RUN pip3 install pytest
RUN pip3 install codecov
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lgx_com_cn/TextRecognitionDataGenerator.git
git@gitee.com:lgx_com_cn/TextRecognitionDataGenerator.git
lgx_com_cn
TextRecognitionDataGenerator
TextRecognitionDataGenerator
master

搜索帮助