Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates OpenJDK to v21 #48

Merged
merged 1 commit into from
Aug 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 2022-gradle/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ LABEL maintainer="Max Kratz <account@maxkratz.com>"
# Config
ARG GRADLE_VERSION=8.10

# Install OpenJDK 17
# Install OpenJDK 21
RUN apt-get update -q && \
apt-get install -yq \
openjdk-17-jre-headless
openjdk-21-jre-headless

# Install Gradle
RUN wget -q -c https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip -P /tmp
Expand Down
4 changes: 2 additions & 2 deletions 2023-gradle/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ LABEL maintainer="Max Kratz <account@maxkratz.com>"
# Config
ARG GRADLE_VERSION=8.10

# Install OpenJDK 17
# Install OpenJDK 21
RUN apt-get update -q && \
apt-get install -yq \
openjdk-17-jre-headless
openjdk-21-jre-headless

# Install Gradle
RUN wget -q -c https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip -P /tmp
Expand Down
4 changes: 2 additions & 2 deletions 2024-gradle/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ LABEL maintainer="Max Kratz <account@maxkratz.com>"
# Config
ARG GRADLE_VERSION=8.10

# Install OpenJDK 17
# Install OpenJDK 21
RUN apt-get update -q && \
apt-get install -yq \
openjdk-17-jre-headless
openjdk-21-jre-headless

# Install Gradle
RUN wget -q -c https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip -P /tmp
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ Currently, there are the following tags published:
| base | Base image with updates and prerequesites installed |
| latest | Newest (stable) TeX Live version available |
| 2024 | TeX Live version 2024 |
| 2024-gradle | TeX Live version 2024 + OpenJDK 17 + Gradle |
| 2024-gradle | TeX Live version 2024 + OpenJDK 21 + Gradle |
| 2024-python | TeX Live version 2024 + Python 3 + pip |
| 2023 | TeX Live version 2023 |
| 2023-gradle | TeX Live version 2023 + OpenJDK 17 + Gradle |
| 2023-gradle | TeX Live version 2023 + OpenJDK 21 + Gradle |
| 2023-python | TeX Live version 2023 + Python 3 + pip |
| 2022 | TeX Live version 2022 (from archive) |
| 2022-gradle | TeX Live version 2022 + OpenJDK 17 + Gradle (from archive) |
| 2022-gradle | TeX Live version 2022 + OpenJDK 21 + Gradle (from archive) |
| 2021 | TeX Live version 2021 (from archive) |
| 2020 | TeX Live version 2020 (from archive) |
| 2019 | TeX Live version 2019 (from archive) |
Expand Down
Loading