Skip to content
Open
Show file tree
Hide file tree
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 backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# --- Builder stage: compiles native extensions (psycopg2, cryptography) ---
FROM python:3.11-slim AS builder
FROM python:3.14-slim AS builder

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
Expand All @@ -16,7 +16,7 @@ RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir --prefix=/install -r requirements.txt

# --- Runtime stage: no compiler toolchain, runs as a non-root user ---
FROM python:3.11-slim
FROM python:3.14-slim

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
Expand Down
4 changes: 2 additions & 2 deletions backend/Dockerfile.voice-worker
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# them at cold start — that weight has no reason to bloat the API image.

# --- Builder stage: compiles native extensions, downloads model weights ---
FROM python:3.11-slim AS builder
FROM python:3.14-slim AS builder

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
Expand Down Expand Up @@ -33,7 +33,7 @@ COPY . /app/
RUN PATH="/install/bin:$PATH" python -m livekit.agents download-files

# --- Runtime stage: no compiler toolchain, runs as a non-root user ---
FROM python:3.11-slim
FROM python:3.14-slim

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
Expand Down
Loading