From 038f42ac11eefc725a76a1d26e9195b5c8d6ffb1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 02:14:25 +0000 Subject: [PATCH] Update python Docker tag to v3.13.1 --- 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 a012cb6..7e25d39 100644 --- a/aws-cli-action/Dockerfile +++ b/aws-cli-action/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.0-alpine@sha256:fcbcbbecdeae71d3b77445d9144d1914df55110f825ab62b04a66c7c33c09373 as Builder +FROM python:3.13.1-alpine@sha256:804ad02b9ba67ea1f8307eeb6407b121c6bd6bb19d3f182aae166821eb59d6a4 as Builder COPY requirements.txt . COPY entrypoint.sh . diff --git a/aws-cli/Dockerfile b/aws-cli/Dockerfile index 9d53a46..e7840c7 100644 --- a/aws-cli/Dockerfile +++ b/aws-cli/Dockerfile @@ -1,11 +1,11 @@ -FROM python:3.13.0-alpine@sha256:fcbcbbecdeae71d3b77445d9144d1914df55110f825ab62b04a66c7c33c09373 as Builder +FROM python:3.13.1-alpine@sha256:804ad02b9ba67ea1f8307eeb6407b121c6bd6bb19d3f182aae166821eb59d6a4 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.13.0-alpine@sha256:fcbcbbecdeae71d3b77445d9144d1914df55110f825ab62b04a66c7c33c09373 +FROM python:3.13.1-alpine@sha256:804ad02b9ba67ea1f8307eeb6407b121c6bd6bb19d3f182aae166821eb59d6a4 COPY --from=Builder /root/.local /root/.local