From 4410f5181aad10e02721afb027e58a4e04ec4e72 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 8 Apr 2026 23:48:36 +0000 Subject: [PATCH] Update public.ecr.aws/docker/library/python Docker tag to v3.14.4 --- simple-example/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simple-example/Dockerfile b/simple-example/Dockerfile index a4bbeeb..762e363 100644 --- a/simple-example/Dockerfile +++ b/simple-example/Dockerfile @@ -1,7 +1,7 @@ # based on this example # https://github.com/aws/aws-lambda-python-runtime-interface-client/blob/970e9c1d2613e0ce9c388547c76ac30992ad0e96/README.md -FROM public.ecr.aws/docker/library/python:3.14.3-slim-trixie AS build-image +FROM public.ecr.aws/docker/library/python:3.14.4-slim-trixie AS build-image # Install aws-lambda-cpp build dependencies (for awslambdaric) RUN apt-get update && \ @@ -26,7 +26,7 @@ RUN python3 -m pip install -U --no-cache-dir pip setuptools wheel && \ --target /src \ awslambdaric boto3 -FROM public.ecr.aws/docker/library/python:3.14.3-slim-trixie +FROM public.ecr.aws/docker/library/python:3.14.4-slim-trixie WORKDIR /src