From 90cc336ec2380adb3870ee024f341e33ba6591c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juanjo=20Guti=C3=A9rrez?= Date: Fri, 30 Jan 2026 12:05:11 +0100 Subject: [PATCH] bind to ANY address --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 49958f1..c5a6e02 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,4 +7,4 @@ RUN pip install --no-cache-dir -r requirements.txt EXPOSE 8000 -CMD ["python", "-m", "gunicorn", "app:app", "--access-logfile", "-"] +CMD ["python", "-m", "gunicorn", "app:app", "--access-logfile", "-", "-b", "0.0.0.0:8000"]