From f0684901ba2d9f59dba9fccfd64a48581026c818 Mon Sep 17 00:00:00 2001 From: Marcel Schwarz Date: Mon, 18 Dec 2023 19:31:12 +0100 Subject: [PATCH] Update gunicorn --- Deployment/Live/Dockerfile.python | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Deployment/Live/Dockerfile.python b/Deployment/Live/Dockerfile.python index ba2025a..1e2c6d7 100644 --- a/Deployment/Live/Dockerfile.python +++ b/Deployment/Live/Dockerfile.python @@ -2,7 +2,7 @@ FROM python:3.10 COPY clubhaus/requirements.txt /tmp/requirements.txt RUN pip3 install -r /tmp/requirements.txt -RUN pip3 install gunicorn~=20.1.0 +RUN pip3 install gunicorn~=21.2.0 ENV PYTHONDONTWRITEBYTECODE 1 ENV PYTHONUNBUFFERED 1