From 7b0b15760ec898de16a33a4e67b2426fcbf6d8df Mon Sep 17 00:00:00 2001 From: monosans Date: Tue, 8 Oct 2024 08:21:41 +0300 Subject: [PATCH] fix: downgrade pythoh from 3.13 to 3.12 --- .github/renovate.json | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index d5cad9b..1d0befa 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -30,7 +30,7 @@ }, { "matchCategories": ["docker"], - "matchDepNames": ["python"], + "matchDepNames": ["docker.io/python"], "matchUpdateTypes": ["minor"], "automerge": false } diff --git a/Dockerfile b/Dockerfile index b78c260..bb733c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/python:3.13-slim-bookworm AS python-base-stage +FROM docker.io/python:3.12-slim-bookworm AS python-base-stage ENV \ PYTHONDONTWRITEBYTECODE=1 \