2 Star 15 Fork 9

zoz/Invoice2Excel

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 563 Bytes
一键复制 编辑 原始数据 按行查看 历史
zoz 提交于 2021-08-02 13:31 . 适配Dockerfile
FROM python:3.8
WORKDIR /home/yczha
COPY requirements.txt requirements.txt
COPY sources.list /etc/apt/sources.list
ARG PYPI=https://pypi.mirrors.ustc.edu.cn/simple
RUN apt-get update && apt-get install -y libzbar-dev\
&& pip install pip setuptools --upgrade -i ${PYPI}\
&& pip install -r requirements.txt -i ${PYPI}\
&& rm requirements.txt && rm -rf /.pip
COPY app app
COPY config.py .env app_inv.py ./
COPY inv_parser inv_parser
ENV FLASK_APP app_inv.py
EXPOSE 5000
CMD exec gunicorn -w 4 -b :5000 --access-logfile - --error-logfile - app_inv:app
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/yczha/Invoice2Excel.git
git@gitee.com:yczha/Invoice2Excel.git
yczha
Invoice2Excel
Invoice2Excel
master

搜索帮助