Skip to content

Commit

Permalink
fix(java17): add options for java11 image variants (#2086)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgogerly committed Sep 19, 2023
1 parent 645ab3e commit 341781a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ public enum ImageVariant {
SLIM("Based on an Alpine image"),
UBUNTU("Based on Canonical's ubuntu:bionic image"),
JAVA8("A variant of SLIM that uses the Java 8 runtime"),
UBUNTU_JAVA8("A variant of UBUNTU that uses the Java 8 runtime");
UBUNTU_JAVA8("A variant of UBUNTU that uses the Java 8 runtime"),
JAVA11("A variant of SLIM that uses the Java 11 runtime"),
UBUNTU_JAVA11("A variant of UBUNTU that uses the Java 11 runtime");

@Getter final String description;

Expand Down

0 comments on commit 341781a

Please sign in to comment.