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
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# -----------------------------------------------------------------------------
# Stage 1: Builder - Install dependencies and build artifacts
# -----------------------------------------------------------------------------
FROM python:3.12-slim as builder
FROM python:3.14-slim as builder

# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1 \
Expand Down Expand Up @@ -35,7 +35,7 @@ RUN pip install --upgrade pip && \
# -----------------------------------------------------------------------------
# Stage 2: Runtime - Minimal production image
# -----------------------------------------------------------------------------
FROM python:3.12-slim as runtime
FROM python:3.14-slim as runtime

# Labels for container metadata
LABEL maintainer="Document Extraction Team" \
Expand Down
Loading