mirror of
https://github.com/katanemo/plano.git
synced 2026-05-10 16:22:42 +02:00
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.
18 lines
296 B
Docker
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"]
|