another big bag of changes

This commit is contained in:
2025-05-27 12:33:46 +03:00
parent de445bc2a4
commit bdfcad51ad

View File

@@ -22,7 +22,15 @@ def call(String appName, String helmChartPath, String helmRepoName,String helmCh
stage('Docker build & push') {
container(containerName) {
script {
dockerBuildAndPush(env.NEXUS_DOCKER_URL, appName, "./Dockerfile", "target", "admin", env.NEXUS_DOCKER_PASS, useInsecureRegistry)
dockerBuilder.dockerBuildAndPush(
env.NEXUS_DOCKER_URL,
appName,
"./Dockerfile",
"target",
"admin",
env.NEXUS_DOCKER_PASS,
useInsecureRegistry
)
}
}
}