From 7a7d72a1093c53204cabea69ae8a26db4d09ab76 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 18:59:45 +0000 Subject: [PATCH] Update python Docker tag to v3.14.7 --- Dockerfile | 4 ++-- Dockerfile.dev | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index d01677a..a8173bd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # SPDX-FileCopyrightText: Copyright (c) 2023-2026 Almaz Ilaletdinov # SPDX-License-Identifier: MIT -FROM python:3.14.6-slim as base +FROM python:3.14.7-slim as base ENV PIP_DISABLE_PIP_VERSION_CHECK=1 WORKDIR /app @@ -16,7 +16,7 @@ COPY --from=poetry /app/requirements.txt /tmp/requirements.txt RUN cat /tmp/requirements.txt RUN python -m venv /app/.venv && /app/.venv/bin/pip install -r /tmp/requirements.txt -FROM python:3.14.6-slim as runtime +FROM python:3.14.7-slim as runtime # Copy only requirements to cache them in docker layer WORKDIR /app diff --git a/Dockerfile.dev b/Dockerfile.dev index f72e939..39ff39c 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,7 +1,7 @@ # SPDX-FileCopyrightText: Copyright (c) 2023-2026 Almaz Ilaletdinov # SPDX-License-Identifier: MIT -FROM python:3.14.6-slim +FROM python:3.14.7-slim ENV PIP_DISABLE_PIP_VERSION_CHECK=1 ENV POETRY_VIRTUALENVS_IN_PROJECT=true # https://stackoverflow.com/questions/61863806/stuck-in-watching-for-file-changes-with-statreloader