From d2bdff0ed92097c37ec9cf5d48d68607014cea31 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 11 Jun 2026 01:10:37 +0000 Subject: [PATCH] Update python Docker tag to v3.14.6 --- aws-cli-action/Dockerfile | 2 +- aws-cli/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aws-cli-action/Dockerfile b/aws-cli-action/Dockerfile index db06740..ec26491 100644 --- a/aws-cli-action/Dockerfile +++ b/aws-cli-action/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.14.5-alpine@sha256:5a824eb82cc75361f98611f3cfc5091ea33f10a6ccea4d4ebdabbc523b9a1614 as Builder +FROM python:3.14.6-alpine@sha256:a5d5c75488ac235e8ea61eb3912eb9e7191c63532a2c87dab313ad671908d314 as Builder COPY requirements.txt . COPY entrypoint.sh . diff --git a/aws-cli/Dockerfile b/aws-cli/Dockerfile index 3baa09e..ca13fea 100644 --- a/aws-cli/Dockerfile +++ b/aws-cli/Dockerfile @@ -1,11 +1,11 @@ -FROM python:3.14.5-alpine@sha256:5a824eb82cc75361f98611f3cfc5091ea33f10a6ccea4d4ebdabbc523b9a1614 as Builder +FROM python:3.14.6-alpine@sha256:a5d5c75488ac235e8ea61eb3912eb9e7191c63532a2c87dab313ad671908d314 as Builder COPY requirements.txt . RUN apk add --update alpine-sdk build-base && \ pip install --no-cache-dir --user -r requirements.txt -FROM python:3.14.5-alpine@sha256:5a824eb82cc75361f98611f3cfc5091ea33f10a6ccea4d4ebdabbc523b9a1614 +FROM python:3.14.6-alpine@sha256:a5d5c75488ac235e8ea61eb3912eb9e7191c63532a2c87dab313ad671908d314 COPY --from=Builder /root/.local /root/.local