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.node16-x86_64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/nodejs:16-x86_64
FROM public.ecr.aws/lambda/nodejs:24-x86_64

# binutils is needed for "strip" command
RUN yum install \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.node18-x86_64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/nodejs:18-x86_64
FROM public.ecr.aws/lambda/nodejs:24-x86_64

# binutils is needed for "strip" command
RUN yum install \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.node20-x86_64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/nodejs:20-x86_64
FROM public.ecr.aws/lambda/nodejs:24-x86_64

Choose a reason for hiding this comment

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

P1 Badge Preserve advertised Node runtimes in node-x86_64 images*

The base image was bumped to public.ecr.aws/lambda/nodejs:24-x86_64, but this Dockerfile (and the other node16/18/22 variants) are still named and tagged as node20/node22 images. Building and publishing them now produces Node 24 Lambda runtimes under the node20/node22/node18/node16 tags, so users expecting those specific runtimes will silently get a different major version and potentially incompatible behavior. If the intent is to keep the older runtimes, the base tag should remain at 20/22/18/16; if upgrading to 24, the filenames/tags and README need to be updated accordingly.

Useful? React with 👍 / 👎.


ARG LIBREOFFICE_CHANNEL=stable
ARG LIBREOFFICE_VERSION=25.2.5
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.node22-x86_64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/nodejs:22-x86_64
FROM public.ecr.aws/lambda/nodejs:24-x86_64

ARG LIBREOFFICE_CHANNEL=stable
ARG LIBREOFFICE_VERSION=25.2.5
Expand Down