From d223e3f0f75ee8f8cf65408adf724643605bdd8a Mon Sep 17 00:00:00 2001 From: Adam Wojdyla Date: Sat, 2 Apr 2022 03:24:58 +0200 Subject: [PATCH] last try --- Jenkinsfile-docker | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile-docker b/Jenkinsfile-docker index e1b5c0a..09017b2 100644 --- a/Jenkinsfile-docker +++ b/Jenkinsfile-docker @@ -26,7 +26,10 @@ pipeline { stages { stage('Prepare dataset') { steps { - sh 'python ./script.py' + sh 'python3 -m pip install kaggle' + sh 'python3 -m pip install numpy' + sh 'python3 -m pip install pandas' + sh 'python3 ./script.py' } } }