From 6532ea78e62dfebfc2b3eb75441fc6984654ac5b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Oct 2025 17:19:36 +0000 Subject: [PATCH] chore(deps): bump python from 3.9-slim to 3.14-slim Bumps python from 3.9-slim to 3.14-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- Dockerfile.api | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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