Skip to content
Merged
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 Containerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.7
# Builder stage — installs deps with uv into /app/.venv
FROM python:3.13-slim AS builder
FROM python:3.14-slim AS builder

ENV UV_LINK_MODE=copy \
UV_COMPILE_BYTECODE=1 \
Expand All @@ -24,7 +24,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \


# Runtime stage — minimal, OpenShift-friendly (random UID, group 0)
FROM python:3.13-slim AS runtime
FROM python:3.14-slim AS runtime

# Release workflow injects the semver tag here so logs/responses carry the
# real version. Defaults to 'dev' for local builds where no version is set.
Expand Down
Loading