From 4be502fbf2a80bd7a1bbe4fe5b953c316479b52f Mon Sep 17 00:00:00 2001 From: David Lougheed Date: Wed, 17 Apr 2024 15:00:50 -0400 Subject: [PATCH] chore: bump gunicorn to 22.0.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 27cf3de..3da81bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN mkdir /wes # Install dependencies COPY pyproject.toml . COPY poetry.lock . -RUN pip install --no-cache-dir gunicorn==21.2.0 && \ +RUN pip install --no-cache-dir gunicorn==22.0.0 && \ poetry config virtualenvs.create false && \ poetry install --without dev --no-root