ium_444356/Jenkinsfile_docker2

12 lines
157 B
Plaintext
Raw Normal View History

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