From 6c7a0c993ed1bdf77ca955a3e01da8db8d42ca6a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Sep 2026 19:56:35 +0000 Subject: [PATCH] Bump python from 3.12-slim to 3.14-slim in /Server Bumps python from 3.12-slim to 3.14-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Server/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Server/Dockerfile b/Server/Dockerfile index 74cb8db..a32632e 100644 --- a/Server/Dockerfile +++ b/Server/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-slim AS build +FROM python:3.14-slim AS build ENV PIP_NO_CACHE_DIR=1 PIP_DISABLE_PIP_VERSION_CHECK=1 PIP_DEFAULT_TIMEOUT=120 WORKDIR /build COPY pyproject.toml requirements.lock LICENSE ./ @@ -6,7 +6,7 @@ RUN pip install --upgrade "pip>=26.2" && pip wheel --wheel-dir /wheels --require COPY app ./app RUN pip wheel --wheel-dir /wheels --no-deps . -FROM python:3.12-slim AS production +FROM python:3.14-slim AS production ENV PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1 PIP_NO_CACHE_DIR=1 PIP_DEFAULT_TIMEOUT=120 WORKDIR /app RUN pip install --upgrade "pip>=26.2"