workout/Jenkinsfile

21 lines
230 B
Plaintext
Raw Normal View History

2018-05-03 10:11:30 +02:00
pipeline {
2018-05-03 10:19:54 +02:00
agent {
docker {
image 'docker'
}
}
2018-05-03 10:11:30 +02:00
stages {
stage('Build') {
agent {
docker {
image 'docker:latest'
}
}
steps {
sh 'env'
}
}
}
}