Update 'Jenkinsfile-Docker'

This commit is contained in:
Wojciech Mikołajski 2023-04-19 18:44:15 +02:00
parent 54ed25b8d9
commit 67ec22404a

View File

@ -27,7 +27,7 @@ node {
}
stage('Build Docker Image') {
def dockerImage = docker.build("create-dataset")
sh 'docker run -v ${env.WORKSPACE}/artifacts:/app/artifacts python3 create_dataset.py $CUT'
sh 'docker run python3 create_dataset.py $CUT'
archiveArtifacts artifacts: 'waterQuality.csv, output.txt'
}