Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0-rc.3
1.1.0-rc.4
6 changes: 3 additions & 3 deletions src/infra/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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
Expand Down Expand Up @@ -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 \
Expand Down
Loading