FROM python:latest

WORKDIR /app
RUN git clone http://192.168.1.68:8418/jayus/VerifVATInvoice.git .
COPY . .
RUN pip install --no-cache-dir -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple

RUN python setup.py install
WORKDIR /app/alibabacloud_sample
CMD ["python", "main.py"]