From 3a383006f251c41cbbb0deba7486d9df172eb1e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Zi=C4=99tkiewicz?= Date: Wed, 26 May 2021 21:48:28 +0200 Subject: [PATCH] Fix script invocation --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 21da3fb..fd313cd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -21,7 +21,7 @@ node { img.inside('-v /tmp/mlruns:/tmp/mlruns -v /mlruns:/mlruns ') { sh 'ls -l /tmp/mlruns' sh 'ls -l /mlruns' - sh './train.py' + sh 'python3 ./train.py' sh 'ls -l /tmp/mlruns' sh 'ls -l /mlruns' }