diff --git a/Dockerfile b/Dockerfile index bbdc826..6e49878 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Data Concierge - Production Dockerfile # Optimized for Google Cloud Run -FROM python:3.11-slim as builder +FROM python:3.14-slim as builder # Install build dependencies RUN apt-get update && apt-get install -y --no-install-recommends \ @@ -44,7 +44,7 @@ RUN pip install --no-cache-dir --upgrade pip setuptools wheel && \ pip install --no-cache-dir . # Production stage -FROM python:3.11-slim as production +FROM python:3.14-slim as production # Install runtime dependencies only RUN apt-get update && apt-get install -y --no-install-recommends \