Skip to content

Commit 9a08b7f

Browse files
Merge pull request #17 from bento-platform/chore/update
chore: update base image, uvicorn, dependencies
2 parents d9258eb + 3f1ffe5 commit 9a08b7f

File tree

4 files changed

+574
-515
lines changed

4 files changed

+574
-515
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2024.07.09
1+
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2024.08.12
22

33
# Use uvicorn (instead of hypercorn) in production since I've found
44
# multiple benchmarks showing it to be faster - David L
5-
RUN pip install --no-cache-dir "uvicorn[standard]==0.30.1"
5+
RUN pip install --no-cache-dir "uvicorn[standard]==0.30.5"
66

77
WORKDIR /reference
88

dev.Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2024.07.09
1+
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2024.08.12
22

33
LABEL org.opencontainers.image.description="Local development image for the Bento reference service."
44
LABEL devcontainer.metadata='[{ \
@@ -12,7 +12,7 @@ LABEL devcontainer.metadata='[{ \
1212
}]'
1313

1414
# FastAPI uses uvicorn for a development server as well
15-
RUN pip install --upgrade pip && pip install --no-cache-dir "uvicorn[standard]==0.30.1"
15+
RUN pip install --upgrade pip && pip install --no-cache-dir "uvicorn[standard]==0.30.5"
1616
WORKDIR /reference
1717

1818
COPY pyproject.toml .

0 commit comments

Comments
 (0)