From 0267b2223e19388296447838571fecb3b667a1a7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Feb 2026 05:50:18 +0000 Subject: [PATCH 1/2] Initial plan From f6fd60a26fb753c4835c9319f0b4bc278a59bf83 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Feb 2026 05:56:18 +0000 Subject: [PATCH 2/2] Use Python 3.13-alpine instead of 3.14-alpine to match supported versions Co-authored-by: MaStr <1036501+MaStr@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 05998f3..447f2b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build Stage -FROM python:3.14-alpine AS builder +FROM python:3.13-alpine AS builder # Copy only whats needed for dependencies first COPY pyproject.toml LICENSE README.MD ./ @@ -14,7 +14,7 @@ COPY ./src ./src RUN pip wheel --no-cache-dir --no-deps --wheel-dir=/wheels . # Stage 2: Build the final image -FROM python:3.14-alpine +FROM python:3.13-alpine ARG VERSION ARG GIT_SHA