diff --git a/Jenkinsfile b/Jenkinsfile index 1a1e6f5..34d147e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,7 +33,12 @@ pipeline { } } } - stage("Dara Preparation") { + stage("Build docker") { + steps { + sh 'docker build -t ium .' + } + } + stage("Data Preparation") { agent { dockerfile true } @@ -53,6 +58,7 @@ pipeline { sh "chmod u+x ./statistics.sh" sh "./statistics.sh" archiveArtifacts 'statistics.csv' + sh 'docker run --rm ium' sh "python stats_data.py" } }