Files
VerifVATInvoice/dockerfile
T

7 lines
166 B
Docker
Raw Normal View History

FROM python:latest
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
RUN python setup.py install
CMD ["python", "alibabacloud_sample/main.py"]