From e165701359b1f612b928624aa884c17508483e58 Mon Sep 17 00:00:00 2001 From: Andy Boothe Date: Wed, 21 Sep 2022 10:00:54 -0500 Subject: [PATCH 1/4] add support for java19 --- Dockerfile | 6 +++--- pom.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 62ea7cc..717b56f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,10 +15,10 @@ # specific language governing permissions and limitations # under the License. -ARG JAVA_VERSION=17 -ARG JAVA_REVISION=17.0.4 +ARG JAVA_VERSION=19 +ARG JAVA_REVISION=19.0.0 -FROM public.ecr.aws/amazoncorretto/amazoncorretto:${JAVA_REVISION}-al2 +FROM public.ecr.aws/amazoncorretto/amazoncorretto:${JAVA_VERSION}-amd64 COPY target/dependencies/* /var/runtime/lib/ diff --git a/pom.xml b/pom.xml index cc0cc91..b8a331c 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ under the License. com.sigpwned aws-lambda-java-base-images - 17.0.4 + 19.0.0 aws-lambda-java-base-images 2022 AWS Lambda Base Image for Java 17+ @@ -59,7 +59,7 @@ under the License. - 17 + 19 ${project.version} aleph0io al2 From f56ee2063de23cc68e8254e305f8845c83598eab Mon Sep 17 00:00:00 2001 From: Andy Boothe Date: Tue, 25 Oct 2022 20:38:12 -0500 Subject: [PATCH 2/4] bump corretto version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b8a331c..3a99ee2 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ under the License. com.sigpwned aws-lambda-java-base-images - 19.0.0 + 19.0.1 aws-lambda-java-base-images 2022 AWS Lambda Base Image for Java 17+ From b081a5a7382d7ca41c5604e44bdb002349f890c5 Mon Sep 17 00:00:00 2001 From: Andy Boothe Date: Sat, 28 Jan 2023 13:40:43 -0600 Subject: [PATCH 3/4] bump container version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3a99ee2..0cb87bd 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ under the License. com.sigpwned aws-lambda-java-base-images - 19.0.1 + 19.0.2 aws-lambda-java-base-images 2022 AWS Lambda Base Image for Java 17+ From bcd6bd63d795f7874ba879ec451cb0108019f9bd Mon Sep 17 00:00:00 2001 From: Andy Boothe Date: Tue, 19 Sep 2023 10:50:05 -0500 Subject: [PATCH 4/4] bump Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 717b56f..948349c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ # under the License. ARG JAVA_VERSION=19 -ARG JAVA_REVISION=19.0.0 +ARG JAVA_REVISION=19.0.2 FROM public.ecr.aws/amazoncorretto/amazoncorretto:${JAVA_VERSION}-amd64