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 @@ -4,7 +4,7 @@
# =============================================================================
# Stage 1: Build stage
# =============================================================================
FROM python:3.10-slim as builder
FROM python:3.14-slim as builder

WORKDIR /app

Expand Down Expand Up @@ -40,7 +40,7 @@ RUN pip install --no-cache-dir -e .
# =============================================================================
# Stage 2: Production runtime
# =============================================================================
FROM python:3.10-slim as production
FROM python:3.14-slim as production

# Security: Run as non-root user
RUN groupadd --gid 1000 patas && \
Expand Down