Skip to content

Commit

Permalink
update JDK17 in dockerfile (#1575)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
vatsrahul1001 authored Aug 26, 2024
1 parent 2bd3ebb commit e7e3f68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/integration-tests/Dockerfile.astro_cloud
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit e7e3f68

Please sign in to comment.