diff --git a/Dockerfile b/Dockerfile index 817a0b0b..7f552473 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Builder -FROM python:3.13-alpine AS builder +FROM python:3.14-alpine AS builder COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv ENV APP_MODE=build @@ -27,7 +27,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \ uv sync --locked --no-dev # Stage 2: Runtime -FROM python:3.13-alpine +FROM python:3.14-alpine ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1