Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
harrryr committed Sep 23, 2024
1 parent de784d0 commit ca1abf2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dependencies {

jib {
from {
image = "openjdk:22-jdk"
image = "openjdk:$javaVersion-jdk"
}

to {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencies {

jib {
from {
image = "openjdk:22-jdk"
image = "openjdk:$javaVersion-jdk"
}

to {
Expand Down
4 changes: 4 additions & 0 deletions sample-apps/java/8/springboot-main-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ dependencies {
}

jib {
from {
image = "openjdk:8-jdk"
}

to {
image = "<ECR_IMAGE_LINK>:<TAG>"
}
Expand Down
4 changes: 4 additions & 0 deletions sample-apps/java/8/springboot-remote-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ dependencies {
}

jib {
from {
image = "openjdk:8-jdk"
}

to {
image = "<ECR_IMAGE_LINK>:<TAG>"
}
Expand Down

0 comments on commit ca1abf2

Please sign in to comment.