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 ]) }