From 23cc8a8df2381ca421f59f358c23cd78c5d78059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20G=C3=B3rzy=C5=84ski?= Date: Wed, 2 Dec 2020 19:43:47 +0100 Subject: [PATCH] Add Small fix to Jenkinsfile --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 4959acd..a19005b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,8 +18,10 @@ pipeline { steps { echo "Building docker image" script { + dir('SessionCompanion'){ def customImage = docker.build("session-companion:${env.BUILD_ID}") customImage.withRun('-p 5050:5050') + } } } }