ium_444356/Jenkinsfile_docker2

12 lines
160 B
Plaintext
Raw Normal View History

2022-04-01 14:07:51 +02:00
pipeline {
agent {
docker { image 'maciejczajka/ium:v1' }
}
stages {
stage('Test') {
steps {
sh './download.sh'
}
}
}
}