diff --git a/services/orchestrator/Dockerfile b/services/orchestrator/Dockerfile index abef415..e729f83 100644 --- a/services/orchestrator/Dockerfile +++ b/services/orchestrator/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 # Orchestrator Service Dockerfile - Multi-stage build for production -FROM python:3.13.7-slim as builder +FROM python:3.14.2-slim as builder # Install system dependencies for building RUN apt-get update && apt-get install -y \ @@ -24,7 +24,7 @@ RUN poetry config virtualenvs.create false && \ poetry install --only main --no-interaction --no-ansi # Runtime stage -FROM python:3.13.7-slim +FROM python:3.14.2-slim # Install runtime dependencies RUN apt-get update && apt-get install -y \