From d10b87b976e91ec49ea3949342bb5e7d05dd1e93 Mon Sep 17 00:00:00 2001 From: ulaniuk Date: Sun, 3 Apr 2022 22:26:13 +0200 Subject: [PATCH] gfsbaghd --- Jenkinsfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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" } }