11 lines
225 B
Groovy
11 lines
225 B
Groovy
pipeline {
|
|
agent { dockerfile true }
|
|
stages {
|
|
stage('Test') {
|
|
steps {
|
|
echo 'Testing...'
|
|
sh 'docker inspect -f . 9e9450beb92d21724f74de580301c54772f148f4'
|
|
}
|
|
}
|
|
}
|
|
} |