From 1f5344f3c8340c1c1686cb732ffa56e3dc0e337d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20G=C3=B3rzy=C5=84ski?= Date: Wed, 2 Dec 2020 19:21:48 +0100 Subject: [PATCH] Bug in jenkinsfile fixed another --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index aee988b..b19fbd7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,10 +1,9 @@ pipeline { - def app stage('Build image') { checkout scm dir('SessionCompanion') { - app = docker.build("session-companion:${env.BUILD_ID}") + docker.build("session-companion:${env.BUILD_ID}") } } stage('Build app') {