ium_s449288/lab10/Jenkinsfile_dvc

16 lines
229 B
Plaintext
Raw Normal View History

2022-05-23 10:58:50 +02:00
pipeline {
agent {
dockerfile {
dir 'lab10'
args '-v /dvcstore'
}
}
stages {
stage('Stage 1') {
steps {
}
}
}
}