add jenkinsfile_docker2

This commit is contained in:
Maciej Czajka 2022-04-01 14:07:51 +02:00
parent ca2d3c0e3c
commit 93314ef65c

12
Jenkinsfile_docker2 Normal file
View File

@ -0,0 +1,12 @@
pipeline {
agent {
docker { image 'maciejczajka/ium:v1' }
}
stages {
stage('Test') {
steps {
sh './download.sh'
}
}
}
}