Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

FROM ghcr.io/astral-sh/uv:0.12.0 AS uv

FROM python:3.13-slim-trixie AS builder
FROM python:3.14-slim-trixie AS builder

COPY --from=uv /uv /bin/uv

Expand All @@ -21,7 +21,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --locked --no-dev --no-editable


FROM python:3.13-slim-trixie AS runtime
FROM python:3.14-slim-trixie AS runtime

ENV PATH="/app/.venv/bin:$PATH" \
PYTHONDONTWRITEBYTECODE=1 \
Expand Down
Loading