From 75208ac43dacbb21d98a47d6de09b05ec0faa5d4 Mon Sep 17 00:00:00 2001 From: Armin Friedl Date: Mon, 9 Nov 2020 06:59:17 +0100 Subject: [PATCH] Remove flask host from docker Snip runs behind gunicorn now in the docker container --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 72d6733..5a27676 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,6 @@ RUN pipenv install gunicorn ENV SNIP_DATABASE="sqlite" ENV SNIP_DATABASE_URI="sqlite:////data/snip.db" -ENV SNIP_FLASK_HOST="0.0.0.0" EXPOSE 5000 CMD ["pipenv", "run", "gunicorn", "-b0.0.0.0:5000", "snip:app"]