From 48cdaa2addb2a3c6f1a5844f5c2a01d2fa1df192 Mon Sep 17 00:00:00 2001 From: Jake Newton <31486532+jnewton03@users.noreply.github.com> Date: Mon, 18 Jul 2022 09:31:32 -0500 Subject: [PATCH 1/2] Update Dockerfile to use Temurin Java OpenJDK has been deprecated: https://hub.docker.com/_/openjdk DEPRECATION NOTICE This image is officially deprecated and all users are recommended to find and use suitable replacements ASAP. Some examples of other Official Image alternatives (listed in alphabetical order with no intentional or implied preference): amazoncorretto eclipse-temurin ibm-semeru-runtimes ibmjava sapmachine See docker-library/openjdk#505 for more information. The only tags which will continue to receive updates beyond July 2022 will be Early Access builds (which are sourced from jdk.java.net), as those are not published/supported by any of the above projects. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8cb97f1b..0226d4dd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM openjdk:11-jre-slim-buster +FROM eclipse-temurin:11-jre-focal # Install GNUPG for package vefification and WGET for file download RUN apt-get update \ From 71c5440121f2d071382dfb83553a742479d5b613 Mon Sep 17 00:00:00 2001 From: Jake Newton Date: Tue, 19 Jul 2022 14:02:43 -0500 Subject: [PATCH 2/2] update to use java 17 to be consisent with the shipped installer --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0226d4dd..87a42760 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM eclipse-temurin:11-jre-focal +FROM eclipse-temurin:17-jre-focal # Install GNUPG for package vefification and WGET for file download RUN apt-get update \