From 04565f87a9e975d6878277cdd18522fcc4b2665b Mon Sep 17 00:00:00 2001 From: Philippe Caseiro Date: Mon, 19 Jun 2023 14:32:31 +0200 Subject: [PATCH] fup --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a4f52d0..8acc42e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,14 +17,14 @@ symfonyAppPipeline('ubuntu:22.04', [ 'imageName': 'reg.cadoles.com/pcaseiro/myapplication-standalone', // Use current tag or default tag if not defined 'imageTag': defaultTag, - 'dockerfile': './misc/images/myapplication-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', + 'dockerfile': 'misc/images/myapplication-kube/Dockerfile', 'dryRun': false ]) }