diff --git a/Dockerfile b/Dockerfile index 6e0f0a1..f8159d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Multi-stage build for optimized image -FROM python:3.9-slim AS builder +FROM python:3.14-slim AS builder # Set working directory WORKDIR /app @@ -21,7 +21,7 @@ RUN pip install --no-cache-dir --user \ RUN pip install --no-cache-dir --user -r requirements.txt # Final stage -FROM python:3.9-slim +FROM python:3.14-slim # Set working directory WORKDIR /app diff --git a/Dockerfile.api b/Dockerfile.api index 20ee8fb..90648da 100644 --- a/Dockerfile.api +++ b/Dockerfile.api @@ -1,6 +1,6 @@ # Dockerfile for Plant Classification API -FROM python:3.10-slim +FROM python:3.14-slim # Set working directory WORKDIR /app