TakeCareApp/Jenkinsfile

11 lines
225 B
Plaintext
Raw Normal View History

2020-11-27 15:46:47 +01:00
pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
2020-11-27 19:19:57 +01:00
echo 'Testing...'
2020-11-27 19:38:25 +01:00
sh 'docker inspect -f . 9e9450beb92d21724f74de580301c54772f148f4'
2020-11-27 15:46:47 +01:00
}
}
}
}