Skip to content

Update public.ecr.aws/docker/library/python Docker tag to v3.13.4 #133

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions simple-example/Dockerfile
Original file line number Diff line number Diff line change
@@ -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.12.5-slim-bookworm as build-image
FROM public.ecr.aws/docker/library/python:3.13.4-slim-bookworm as build-image

# Install aws-lambda-cpp build dependencies (for awslambdaric)
RUN apt-get update && \
Expand All @@ -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.12.5-slim-bookworm
FROM public.ecr.aws/docker/library/python:3.13.4-slim-bookworm

WORKDIR /src

Expand Down
Loading