From 888f9639ba4045696250f43a6249adff82316589 Mon Sep 17 00:00:00 2001 From: Conrad Date: Mon, 19 May 2025 18:50:25 +0200 Subject: [PATCH] fix: removed max_requests --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a44f7d9..a17de8d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN pip install 'uvicorn[standard]' ENV ENV=DEV EXPOSE 8000 -CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--timeout-keep-alive", "600", "--limit-max-requests", "0"] +CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--timeout-keep-alive", "600"] # Install curl RUN apt-get update && apt-get install -y curl && apt-get clean