Merge remote-tracking branch 'origin/main' into demos-overhaul

# Conflicts:
#	demos/shared/chatbot_ui/Dockerfile
This commit is contained in:
Adil Hafeez 2026-02-15 10:34:52 -08:00
commit 2a10517144
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
12 changed files with 174 additions and 20 deletions

View file

@ -1,7 +1,7 @@
# Blazing fast Python Docker builds with uv
# The builder image, used to build the virtual environment
FROM python:3.12 as builder
FROM python:3.14 as builder
# Install uv
RUN pip install --no-cache-dir uv
@ -17,7 +17,7 @@ RUN touch README.md
RUN uv sync --frozen --no-dev
# The runtime image, used to just run the code provided its virtual environment
FROM python:3.12-slim as runtime
FROM python:3.14-slim as runtime
RUN apt-get update && apt-get install -y curl