1 Commits
0.1.1 ... 0.1.2

Author SHA1 Message Date
888f9639ba fix: removed max_requests 2025-05-19 18:50:25 +02:00

View File

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