From 9bfedf00903bd6ebc657fe2bbe4d18d6f19c1a6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Mon, 9 Aug 2021 11:34:23 +0200 Subject: [PATCH] remove workers and threads --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6665b1f..ab4ea00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,4 +16,4 @@ COPY ./src . EXPOSE 8080 -ENTRYPOINT ["gunicorn", "-b", "0.0.0.0:8080", "--workers", "1", "--threads", "1", "app:app"] +ENTRYPOINT ["gunicorn", "-b", "0.0.0.0:8080", "app:app"]