Skip to content
Merged
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.14.2-slim-trixie AS build-image
FROM public.ecr.aws/docker/library/python:3.14.3-slim-trixie 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.14.2-slim-trixie
FROM public.ecr.aws/docker/library/python:3.14.3-slim-trixie

WORKDIR /src

Expand Down