diff --git a/Dockerfile b/Dockerfile index d8ebd0c..cd27d98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,6 +59,8 @@ ARG PORT=5000 EXPOSE $PORT ENTRYPOINT ["tini", "uwsgi", "--"] +# TODO remove this STOPSIGNAL override after uwsgi>=2.1 +STOPSIGNAL SIGQUIT CMD ["-s", "127.0.0.1:${PORT}", "-M", "-T", "--threads", "2", "-p", "2", \ "--manage-script-name", "--callable", "app"]