From 28466357cdb763d5c870c625cd8e4fac26287955 Mon Sep 17 00:00:00 2001 From: Norbert Walkowiak Date: Mon, 17 Apr 2023 20:47:22 +0200 Subject: [PATCH] fix --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 13fb0da..8ca7756 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -61,9 +61,9 @@ pipeline { steps { script { // Uruchamia instancje obrazu ium - sh "docker run -d -v ${env.WORKSPACE}/artifacts:/app/artifacts --name ium ium" + sh "docker run -d -v ${env.WORKSPACE}/artifacts:/app/artifacts --name ium" // Uruchomienie skryptu w kontenerze - sh "docker exec ium python3 ./s487175-create-dataset-script.py" + sh "python3 ./s487175-create-dataset-script.py" } } }