Remove flask host from docker
All checks were successful
continuous-integration/drone/push Build is passing

Snip runs behind gunicorn now in the docker container
This commit is contained in:
Armin Friedl 2020-11-09 06:59:17 +01:00
parent 14487c6f6e
commit 75208ac43d

View file

@ -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"]