diff --git a/Jenkinsfile b/Jenkinsfile index becbefb..a4f52d0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,10 +14,17 @@ symfonyAppPipeline('ubuntu:22.04', [ // Retrieve default tag String defaultTag = sh(returnStdout: true, script: 'git describe --always').trim() container.buildAndPublishImage([ - 'imageName': 'reg.cadoles.com/pcaseiro/myapplication', + 'imageName': 'reg.cadoles.com/pcaseiro/myapplication-standalone', // Use current tag or default tag if not defined 'imageTag': defaultTag, - 'dockerfile': './misc/images/hydra-sql-standalone/Dockerfile', + 'dockerfile': './misc/images/myapplication-standalone/Dockerfile', + 'dryRun': false + ]) + container.buildAndPublishImage([ + 'imageName': 'reg.cadoles.com/pcaseiro/myapplication-kube', + // Use current tag or default tag if not defined + 'imageTag': defaultTag, + 'dockerfile': './misc/images/myapplication-kube/Dockerfile', 'dryRun': false ]) }