From e7e3f689df21521ddcdc4d3c6d7529b08476187a Mon Sep 17 00:00:00 2001 From: vatsrahul1001 <43964496+vatsrahul1001@users.noreply.github.com> Date: Mon, 26 Aug 2024 12:52:05 +0530 Subject: [PATCH] update JDK17 in dockerfile (#1575) We have migrated to Bookworm from Bullseye in runtime12. Astronomer providers' tests are now also moved to runtime12. Since Bookworm does not have JDK8, we are upgrading to the latest version to resolve this issue. --- .circleci/integration-tests/Dockerfile.astro_cloud | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/integration-tests/Dockerfile.astro_cloud b/.circleci/integration-tests/Dockerfile.astro_cloud index 285b0eadc..dbba7a97f 100644 --- a/.circleci/integration-tests/Dockerfile.astro_cloud +++ b/.circleci/integration-tests/Dockerfile.astro_cloud @@ -10,10 +10,10 @@ RUN apt-get update -y \ && apt-get install -y software-properties-common \ && apt-get install -y wget procps gnupg2 -# Install openjdk-8 +# Install openjdk-17 RUN apt-add-repository 'deb http://archive.debian.org/debian stretch main' \ - && apt-get update && apt-get install -y openjdk-8-jdk -ENV JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/ + && apt-get update && apt-get install -y openjdk-17-jdk +ENV JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64/ RUN apt-get update -y \ && apt-get install -y \