From e14cc608753e81c3d3d8ad2af4defd8581ffe0f6 Mon Sep 17 00:00:00 2001 From: Grzegorz Kostkowski Date: Tue, 30 Jun 2026 11:04:24 +0200 Subject: [PATCH 1/3] chore(infra): use fully qualified Docker image references --- src/infra/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/infra/Dockerfile b/src/infra/Dockerfile index 99affbf..cf92f40 100644 --- a/src/infra/Dockerfile +++ b/src/infra/Dockerfile @@ -4,7 +4,7 @@ # ============================================================================= # Fetcher stage: resolve dependencies and build wheels # ============================================================================= -FROM python:3.12-slim AS fetcher +FROM docker.io/library/python:3.12-slim AS fetcher ARG POETRY_VERSION=">=2.0.0,<3.0.0" @@ -28,7 +28,7 @@ RUN poetry export -f requirements.txt --output requirements.txt --without-hashes # ============================================================================= # Builder stage: install wheels into a virtual environment # ============================================================================= -FROM python:3.12-slim AS builder +FROM docker.io/library/python:3.12-slim AS builder ENV PYTHONDONTWRITEBYTECODE=1 \ PYTHONUNBUFFERED=1 @@ -58,7 +58,7 @@ RUN pip install --no-deps . # ============================================================================= # Runtime stage: minimal production image # ============================================================================= -FROM python:3.12-slim AS runtime +FROM docker.io/library/python:3.12-slim AS runtime ENV PYTHONDONTWRITEBYTECODE=1 \ PYTHONUNBUFFERED=1 \ From 1b638499a9b6b068792820cb65df65fad04124ca Mon Sep 17 00:00:00 2001 From: Grzegorz Kostkowski Date: Tue, 30 Jun 2026 11:09:10 +0200 Subject: [PATCH 2/3] chore(release): bump version to 1.1.0-rc.4 --- src/VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VERSION b/src/VERSION index b2d500d..61cb4de 100644 --- a/src/VERSION +++ b/src/VERSION @@ -1 +1 @@ -1.1.0-rc.3 +1.1.0-rc.4 From 3867dad1b81d40be05756a8c2f84a20d8a39ba8e Mon Sep 17 00:00:00 2001 From: Grzegorz Kostkowski Date: Tue, 30 Jun 2026 11:21:03 +0200 Subject: [PATCH 3/3] chore(release): update changelog for 1.1.0-rc.4 --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63615a6..aad6ffa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [1.1.0-rc.4] - 2026-06-30 + +### Changed +* Dockerfile updated to use fully qualified Docker Hub reference for the Python base image + + ## [1.1.0-rc.3] - 2026-06-10 ### Changed