Python docker

This commit is contained in:
Juan Pablo Vial
2022-03-10 15:11:26 -03:00
parent f29bc8f05f
commit 1c5467e8fb
6 changed files with 31 additions and 921 deletions

9
Python.Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM python:3.8
COPY ./bin /usr/opt/incoviba
WORKDIR /usr/opt/incoviba/informes
RUN pip install gunicorn pandas xlsxwriter httpx flask numpy
CMD ["gunicorn", "-w", "4", "app:app"]