ium_444356/Jenkinsfile_docker2

15 lines
195 B
Plaintext
Raw Normal View History

2022-04-01 14:07:51 +02:00
pipeline {
agent {
2022-04-01 15:54:46 +02:00
docker {
image 'czajson99/ium:v1'
args '-it --entrypoint=/bin/bash'
}
2022-04-01 14:07:51 +02:00
}
stages {
stage('Test') {
steps {
sh './download.sh'
}
}
}
}