From 422414c9d7f85d7321226dc3a8b50f7329a3f21b Mon Sep 17 00:00:00 2001 From: David Lougheed Date: Fri, 22 Dec 2023 10:39:05 -0500 Subject: [PATCH] chore: update base image + image dependencies --- Dockerfile | 4 ++-- dev.Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 17d3d47..03aeeb1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM ghcr.io/bento-platform/bento_base_image:python-debian-2023.11.10 +FROM ghcr.io/bento-platform/bento_base_image:python-debian-2023.12.01 # Use uvicorn (instead of hypercorn) in production since I've found # multiple benchmarks showing it to be faster - David L -RUN pip install --no-cache-dir poetry==1.6.1 "uvicorn[standard]==0.24.0" +RUN pip install --no-cache-dir poetry==1.7.1 "uvicorn[standard]==0.25.0" # Backwards-compatible with old BentoV2 container layout WORKDIR /drop-box diff --git a/dev.Dockerfile b/dev.Dockerfile index 09a3f87..cf152d3 100644 --- a/dev.Dockerfile +++ b/dev.Dockerfile @@ -1,6 +1,6 @@ -FROM ghcr.io/bento-platform/bento_base_image:python-debian-2023.11.10 +FROM ghcr.io/bento-platform/bento_base_image:python-debian-2023.12.01 -RUN pip install --no-cache-dir poetry==1.6.1 "uvicorn[standard]==0.24.0" +RUN pip install --no-cache-dir poetry==1.7.1 "uvicorn[standard]==0.25.0" # Backwards-compatible with old BentoV2 container layout WORKDIR /drop-box