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' } } }