12 lines
147 B
Groovy
12 lines
147 B
Groovy
pipeline {
|
|
agent none
|
|
stages {
|
|
stage('Docker Build') {
|
|
agent any
|
|
steps {
|
|
sh 'docker build -t nginx .'
|
|
}
|
|
}
|
|
}
|
|
}
|