From 8a0dc4352567e818ab04ee11c87fa2db5b5c1125 Mon Sep 17 00:00:00 2001 From: Norbert Walkowiak Date: Mon, 17 Apr 2023 23:13:13 +0200 Subject: [PATCH] fix --- Jenkinsfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 06af0ac..ff4557a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -60,10 +60,8 @@ pipeline { stage('Run command in container') { steps { script { - // Uruchamia instancje obrazu ium - sh 'docker run -it ium' - // Uruchomienie skryptu w kontenerze - sh 'python3 /app/s487175-create-dataset-script.py >> output.txt' + // Uruchamia instancje obrazu ium i uruchomienie skryptu w kontenerze + sh 'docker run ium python3 /app/s487175-create-dataset-script.py >> output.txt' } } }