Files
oficial/Python.Dockerfile

10 lines
205 B
Docker
Raw Normal View History

2022-03-10 15:11:26 -03:00
FROM python:3.8
COPY ./bin /usr/opt/incoviba
WORKDIR /usr/opt/incoviba/informes
RUN pip install gunicorn pandas xlsxwriter httpx flask numpy
2022-03-10 15:31:18 -03:00
CMD ["gunicorn", "-w", "4", "--bind", "0.0.0.0", "app:app"]