Files
test-docker/Jenkinsfile
2023-01-22 15:58:46 -06:00

12 lines
147 B
Groovy

pipeline {
agent none
stages {
stage('Docker Build') {
agent any
steps {
sh 'docker build -t nginx .'
}
}
}
}