plano/demos/shared/chatbot_ui/Dockerfile
Adil Hafeez c3591bcbf3
Upgrade CI, Docker, and demos to Python 3.14 (#759)
Update all GitHub Actions workflows and Dockerfiles to use Python 3.14
as the default version. Remove the upper bound on requires-python in
model_choice_with_test_harness to allow 3.14+. The CLI's
requires-python stays at >=3.10 for broad compatibility.
2026-02-15 10:22:33 -08:00

18 lines
296 B
Docker

FROM python:3.14 AS base
FROM base AS builder
WORKDIR /src
COPY requirements.txt /src/
RUN pip install --prefix=/runtime --force-reinstall -r requirements.txt
FROM python:3.14-slim AS output
COPY --from=builder /runtime /usr/local
WORKDIR /app
COPY *.py .
CMD ["python", "run_stream.py"]