Skip to content
Closed
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 docker/Dockerfile.unified
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN bun run build
# ------------------------------------------------------------------------------
# Stage 2: Build Python Dependencies
# ------------------------------------------------------------------------------
FROM python:3.12-slim AS python-builder
FROM python:3.14-slim AS python-builder

WORKDIR /build

Expand Down Expand Up @@ -63,7 +63,7 @@ RUN pip install --no-cache-dir -r bridge-requirements.txt
# ------------------------------------------------------------------------------
# Stage 3: Final Runtime Image
# ------------------------------------------------------------------------------
FROM python:3.12-slim
FROM python:3.14-slim

# Install runtime dependencies (xz-utils needed for s6-overlay extraction)
RUN apt-get update && apt-get install -y --no-install-recommends \
Expand Down
Loading