From 6c0dab4b38b74318f7ada633c7e508e48cded7a8 Mon Sep 17 00:00:00 2001 From: Philippe Caseiro Date: Mon, 19 Jun 2023 14:29:43 +0200 Subject: [PATCH] fup --- Jenkinsfile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) 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 ]) }