From 83f8fc197f2bf8f91206f73d4df02c8f4351c3d1 Mon Sep 17 00:00:00 2001 From: Sagent Date: Wed, 10 Jun 2026 23:44:00 +0000 Subject: [PATCH 1/2] fix: update awscli to v1.45.27 for Python 3.12+ compatibility --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ee8a96c..e771c05 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.9-alpine LABEL maintainer="Julien Cabillot " -ARG CLI_VERSION=1.16.148 +ARG CLI_VERSION=1.45.27 # hadolint ignore=DL3018,DL3013 RUN apk --no-cache upgrade && \ From 9a1561d2ad6ad7494275ffcd5d43c755a71625d6 Mon Sep 17 00:00:00 2001 From: Sagent Date: Wed, 10 Jun 2026 23:50:37 +0000 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20bump=20Python=203.9=E2=86=923.14=20a?= =?UTF-8?q?nd=20awscli=201.16.148=E2=86=921.45.27?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Python 3.14 image for latest Python compatibility - awscli 1.45.27 drops vendored urllib3 with 'from collections import Mapping' (removed in Python 3.12+) and supports Python >=3.10 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e771c05..ba1674f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-alpine +FROM python:3.14-alpine LABEL maintainer="Julien Cabillot " ARG CLI_VERSION=1.45.27