diff --git a/Jenkinsfile b/Jenkinsfile index 7b73639..0ae257b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,12 +31,9 @@ pipeline { } stage("Download data") { steps { - withDockerContainer('ium'){ - sh "ls" - sh "./download_data.sh" - sh "python3 clean_and_split_data.py" - archiveArtifacts artifacts: "crime.test, crime.dev, crime.train", onlyIfSuccessful: true - } + sh "./download_data.sh" + sh "python3 clean_and_split_data.py" + archiveArtifacts artifacts: "crime.test, crime.dev, crime.train", onlyIfSuccessful: true } } }