Zaktualizuj 'Docker/Jenkinsfile'

This commit is contained in:
Szymon Parafiński 2022-03-30 18:44:29 +02:00
parent ffe1cec583
commit 491bc7a2a6

4
Docker/Jenkinsfile vendored
View File

@ -5,13 +5,13 @@ pipeline {
stage ("run agent") {
steps {
sh 'docker build -f './Docker/Dockerfile' -t 'ium_docker' .'
sh 'docker build -f ./Docker/Dockerfile -t ium_docker .'
}
}
stage('Split set into dev/train/test') {
steps {
sh 'docker run -ti 'ium_docker' python3 ./Docker/script.py'
sh 'docker run -ti ium_docker python3 ./Docker/script.py'
}
}