Files
oficial/Python.Dockerfile
2022-03-10 15:31:18 -03:00

10 lines
205 B
Docker

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", "--bind", "0.0.0.0", "app:app"]