From 3552aff21b31458fbd349d27240f8d774926533e Mon Sep 17 00:00:00 2001 From: Jeltz Date: Thu, 1 Apr 2021 17:10:57 +0200 Subject: [PATCH] Listen on 0.0.0.0 only --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 91473bf..c8d09b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,4 +12,4 @@ COPY . /var/www/alertbot/ # Move the rigth directory WORKDIR /var/www/alertbot EXPOSE 8000 -ENTRYPOINT python3 /var/www/alertbot/bot.py +ENTRYPOINT python3 /var/www/alertbot/bot.py --host=0.0.0.0 --port=8000