From 6995561e4f91d2832b20c468ffc1a3397ed49f6a Mon Sep 17 00:00:00 2001 From: Juan Pablo Vial Date: Thu, 10 Mar 2022 15:31:18 -0300 Subject: [PATCH] FIX: listen to network --- Python.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python.Dockerfile b/Python.Dockerfile index 32c4b71..8c42826 100644 --- a/Python.Dockerfile +++ b/Python.Dockerfile @@ -6,4 +6,4 @@ WORKDIR /usr/opt/incoviba/informes RUN pip install gunicorn pandas xlsxwriter httpx flask numpy -CMD ["gunicorn", "-w", "4", "app:app"] +CMD ["gunicorn", "-w", "4", "--bind", "0.0.0.0", "app:app"]