From 49bf934266d109bd0109e413ada1a2eee9261cc8 Mon Sep 17 00:00:00 2001 From: Nate Bynum Date: Thu, 30 May 2024 15:00:17 -0400 Subject: [PATCH] Update versions due to CVE vulnerabilities --- Dockerfile | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ef68d3a..096f1ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ COPY --from=builder /build/dist/*.whl /home/datashader/tmp/ ENV PATH="$PATH:/home/datashader/.local/bin" RUN pip install --upgrade pip && \ pip install --no-cache-dir /home/datashader/tmp/*.whl && \ - pip install gunicorn==20.1.0 && \ + pip install gunicorn==22.0.0 && \ pip install uvicorn==0.24.0 COPY deployment/logging_config.yml /opt/elastic_datashader/ diff --git a/pyproject.toml b/pyproject.toml index f61d11a..c2a5f3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ humanize = "*" uvicorn = {extras = ["standard"], version = "0.24.0", optional = true} fastapi = ">=0.109.1" georgio = "2023.156.924" -jinja2 = "3.1.2" +jinja2 = "3.1.4" [tool.poetry.dev-dependencies] pytest = "*"