From 7e7d8815685fd5d260d4adc8f92b150831bc39ea Mon Sep 17 00:00:00 2001 From: Mpho raf Date: Wed, 19 Jan 2022 15:37:49 +0200 Subject: [PATCH] Fixed docker issues --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 654a2d6..e0a48eb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -36,7 +36,7 @@ pipeline { steps { dir(path: env.BUILD_ID) { unstash(name: 'compiled-results') - sh "docker run --rm -v ${VOLUME} ${IMAGE} 'pyinstaller -F add2vals.py'" + sh "docker run --rm -v ${VOLUME} ${IMAGE} 'pyinstaller -F add2vals.py' " } } post { @@ -47,4 +47,4 @@ pipeline { } } } -} \ No newline at end of file +}