From 54d5992a4f99ca368b708b68ba6dde0666c5b2aa Mon Sep 17 00:00:00 2001 From: Mohamed Elasmar <71043312+moelasmar@users.noreply.github.com> Date: Tue, 29 Aug 2023 10:28:55 -0700 Subject: [PATCH] chore: pin the parent images for Java8 and Go1.x runtimes to the old emulation images till runtimes team fix the latest images. (#102) --- build-image-src/Dockerfile-go1x | 4 +++- build-image-src/Dockerfile-java8 | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/build-image-src/Dockerfile-go1x b/build-image-src/Dockerfile-go1x index 323880e..7546c07 100644 --- a/build-image-src/Dockerfile-go1x +++ b/build-image-src/Dockerfile-go1x @@ -1,4 +1,6 @@ -FROM public.ecr.aws/lambda/go:1 +# reset to the latest emulation image after the raised issue got solved. +# FROM public.ecr.aws/lambda/go:1 +FROM public.ecr.aws/lambda/go:1.2023.08.02.10 RUN yum groupinstall -y development && \ yum install -d1 -y \ diff --git a/build-image-src/Dockerfile-java8 b/build-image-src/Dockerfile-java8 index 7043253..ff244da 100644 --- a/build-image-src/Dockerfile-java8 +++ b/build-image-src/Dockerfile-java8 @@ -1,4 +1,6 @@ -FROM public.ecr.aws/lambda/java:8 +# reset to the latest emulation image after the raised issue got solved. +# FROM public.ecr.aws/lambda/java:8 +FROM public.ecr.aws/lambda/java:8.2023.08.02.10 RUN yum groupinstall -y development && \ yum install -d1 -y \