Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Dockerfile.python3_12-x86_64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.12-x86_64
FROM public.ecr.aws/lambda/python:3.14-x86_64

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep python3.12 image on 3.12 runtime

The python3_12 Dockerfile now pulls public.ecr.aws/lambda/python:3.14-x86_64, so the image built and published as 25.2-python3.12-x86_64 will 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 the 3.12 tag.

Useful? React with 👍 / 👎.


ARG LIBREOFFICE_CHANNEL=stable
ARG LIBREOFFICE_VERSION=25.2.5
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.python3_13-x86_64
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

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Retain python3.13 image on 3.13 base

Similarly, the python3_13 variant now also points to public.ecr.aws/lambda/python:3.14-x86_64. Publishing this image under a python3.13 tag will ship Python 3.14 instead, removing the genuine 3.13 variant and potentially breaking workloads that must stay on 3.13. Unless the plan is to rename the image to 3.14 everywhere, the base tag here should stay at 3.13-x86_64.

Useful? React with 👍 / 👎.


ARG LIBREOFFICE_CHANNEL=stable
ARG LIBREOFFICE_VERSION=25.2.5
Expand Down