Skip to content

Commit 315b910

Browse files
committed
Fix Java 23 Docker build paths.
See #4817
1 parent ef0a561 commit 315b910

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Jenkinsfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ pipeline {
108108

109109
steps {
110110
script {
111-
def image = docker.build("springci/spring-data-with-mongodb-8.0:${p['java.next.tag']}", "--build-arg BASE=${p['docker.java.next.image']} --build-arg MONGODB=${p['docker.mongodb.8.0.version']} ci/openjdk17-mongodb-8.0/")
111+
def image = docker.build("springci/spring-data-with-mongodb-8.0:${p['java.next.tag']}", "--build-arg BASE=${p['docker.java.next.image']} --build-arg MONGODB=${p['docker.mongodb.8.0.version']} ci/openjdk23-mongodb-8.0/")
112112
docker.withRegistry(p['docker.registry'], p['docker.credentials']) {
113113
image.push()
114114
}
@@ -244,7 +244,7 @@ pipeline {
244244
}
245245
}
246246

247-
stage("test: MongoDB 8.0 (main)") {
247+
stage("test: MongoDB 8.0 (next)") {
248248
agent {
249249
label 'data'
250250
}

0 commit comments

Comments
 (0)