384863451 / invoice_ocr

混合票据识别,增值税专用发票, 增值税普通发票, 增值税电子专用发票, 增值税电子普通发票, 增值税普通发票(卷式), 非税财政电子票据, 过路费发票, 火车票, 飞机票, 客运票, 出租车票, 定额, 通用机打发票
99 stars 41 forks source link

有没有docker镜像? #6

Open leo-je opened 2 years ago

leo-je commented 2 years ago

有没有docker镜像?

morolt commented 2 years ago

`FROM python:3.6.15-slim-buster LABEL version="1.0" EXPOSE 8080

RUN sed -i 's#http://deb.debian.org#https://mirrors.163.com#g' /etc/apt/sources.list RUN apt update && apt install ffmpeg libsm6 libxext6 -y

WORKDIR /chineseocr ADD . /chineseocr

RUN cd /chineseocr

skip no_tax model

RUN mkdir models/no_tax && cp models/taxi/best.pt models/no_tax/

RUN pip install -r requirements.txt -i https://mirror.baidu.com/pypi/simple RUN python manage.py migrate CMD python manage.py runserver 0.0.0.0:8080`