From e38c428cc94024ab061bdd484720357d4b43d8c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Mon, 9 Aug 2021 11:33:26 +0200 Subject: [PATCH] remove workers and threads --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0aea8e9..033d6d5 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"] \ No newline at end of file +ENTRYPOINT ["gunicorn", "-b", "0.0.0.0:8080", "app:app"] \ No newline at end of file