diff --git a/Dockerfile.builder b/Dockerfile.builder index 71f17d95..36885651 100644 --- a/Dockerfile.builder +++ b/Dockerfile.builder @@ -1,7 +1,7 @@ # Multi-purpose builder image for HyperCode project # This image can be used for builds, tests, and CI/CD pipelines -FROM python:3.11-slim as base +FROM python:3.14-slim as base # Install system dependencies RUN apt-get update && apt-get install -y \ diff --git a/Dockerfile.production b/Dockerfile.production index 8c466b0d..eadb509a 100644 --- a/Dockerfile.production +++ b/Dockerfile.production @@ -3,7 +3,7 @@ # ==================== BASE STAGE ==================== # Shared foundation for all production stages -FROM python:3.11-slim as base +FROM python:3.14-slim as base # Install system dependencies in a single layer with cache cleanup RUN apt-get update && apt-get install -y --no-install-recommends \