ium_s449288/lab10/Jenkinsfile_dvc
2022-05-23 10:58:50 +02:00

16 lines
229 B
Plaintext

pipeline {
agent {
dockerfile {
dir 'lab10'
args '-v /dvcstore'
}
}
stages {
stage('Stage 1') {
steps {
}
}
}
}