From 10af91fe5dcbefa5882dafeb6af5a274d09d1daa Mon Sep 17 00:00:00 2001 From: Marco Geweke Date: Mon, 27 Jan 2025 10:04:02 +0100 Subject: [PATCH] Update ami linux version --- lambda/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lambda/Dockerfile b/lambda/Dockerfile index 205fd8ff..1912947f 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="131" +ARG CHROME_MAJOR_VERSION="132" # 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.20250115" +ARG AMI_LINUX_2023_VERSION="2023.6.20250123" USER root