16 lines
188 B
Text
16 lines
188 B
Text
|
pipeline {
|
||
|
agent none
|
||
|
stages {
|
||
|
stage('Build') {
|
||
|
agent {
|
||
|
docker {
|
||
|
image 'docker:latest'
|
||
|
}
|
||
|
|
||
|
}
|
||
|
steps {
|
||
|
sh 'env'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|