-
Notifications
You must be signed in to change notification settings - Fork 21
chore(deps): update public.ecr.aws/lambda/python docker tag to v3.14 #52
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM public.ecr.aws/lambda/python:3.13-x86_64 | ||
| FROM public.ecr.aws/lambda/python:3.14-x86_64 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Similarly, the Useful? React with 👍 / 👎. |
||
|
|
||
| ARG LIBREOFFICE_CHANNEL=stable | ||
| ARG LIBREOFFICE_VERSION=25.2.5 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
python3_12Dockerfile now pullspublic.ecr.aws/lambda/python:3.14-x86_64, so the image built and published as25.2-python3.12-x86_64will actually contain Python 3.14. That silently drops the Python 3.12 runtime variant described in the README and is likely to break consumers that rely on the 3.12 interpreter for compatibility testing or deployment. If the intent is to continue offering distinct 3.12 and 3.13 images, this line should remain on the3.12tag.Useful? React with 👍 / 👎.