From 320dbe4f97339fc4e9fccf8e0d2ca253186b07ee Mon Sep 17 00:00:00 2001 From: Marco Geweke Date: Fri, 15 Nov 2024 10:09:33 +0100 Subject: [PATCH] Use new AMI Linux in lambda dockerfile --- lambda/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lambda/Dockerfile b/lambda/Dockerfile index 1ec874b4..7ad452c5 100644 --- a/lambda/Dockerfile +++ b/lambda/Dockerfile @@ -1,12 +1,12 @@ FROM public.ecr.aws/lambda/java:21-x86_64 # This is used to grep the latest full release URL of Chrome with this Major version from the Chrome for Testing website -ARG CHROME_MAJOR_VERSION="130" +ARG CHROME_MAJOR_VERSION="131" # This sets the specific version of the AMI Linux 2023 release # This is to ensure that the latest version of the AMI Linux 2023 release is used for the dnf upgrade, # as the java:21 lambda image is not always based on the latest AMI Linux 2023 release -ARG AMI_LINUX_2023_VERSION="2023.6.20241031" +ARG AMI_LINUX_2023_VERSION="2023.6.20241111" USER root