From d65af25552a53d085d35589e1328cabb4d937622 Mon Sep 17 00:00:00 2001 From: Cedric Spindler Date: Sun, 10 Dec 2023 20:18:58 +0100 Subject: [PATCH] Bind to public address --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5c39f17..248ee7f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,4 +5,4 @@ COPY ./requirements.txt /batdetect2_gui/requirements.txt COPY ./credentials.py /batdetect2_gui/credentials.py RUN pip install -U pip RUN pip install --no-cache-dir -r /batdetect2_gui/requirements.txt -CMD ["gunicorn", "application:application"] +CMD ["gunicorn", "application:application", "--bind", "0.0.0.0"]