Skip to content

Commit

Permalink
Merge pull request #485 from bento-platform/chore/updates
Browse files Browse the repository at this point in the history
chore: update base image, lockfile dependencies
  • Loading branch information
davidlougheed committed Feb 14, 2024
2 parents 89fffe4 + 316c2f5 commit d5c009c
Show file tree
Hide file tree
Showing 4 changed files with 571 additions and 583 deletions.
4 changes: 2 additions & 2 deletions bento.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2024.01.01
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2024.02.14

SHELL ["/bin/bash", "-c"]

Expand All @@ -7,7 +7,7 @@ SHELL ["/bin/bash", "-c"]
RUN apt-get update -y && \
apt-get install -y postgresql-client && \
rm -rf /var/lib/apt/lists/* && \
pip install --no-cache-dir "uvicorn[standard]==0.27.0"
pip install --no-cache-dir "uvicorn[standard]==0.27.1"

# Backwards-compatible with old BentoV2 container layout
WORKDIR /app
Expand Down
4 changes: 2 additions & 2 deletions bento.dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2024.01.01
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2024.02.14

LABEL org.opencontainers.image.description="Local development image for Katsu."
LABEL devcontainer.metadata='[{ \
Expand All @@ -18,7 +18,7 @@ SHELL ["/bin/bash", "-c"]
RUN apt-get update -y && \
apt-get install -y postgresql-client && \
rm -rf /var/lib/apt/lists/* && \
pip install --no-cache-dir "uvicorn[standard]==0.27.0"
pip install --no-cache-dir "uvicorn[standard]==0.27.1"

# Backwards-compatible with old BentoV2 container layout
WORKDIR /app
Expand Down

0 comments on commit d5c009c

Please sign in to comment.