This commit is contained in:
2023-01-22 15:58:46 -06:00
parent 798c3a502f
commit 2380c5a26e
3 changed files with 16 additions and 0 deletions

11
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,11 @@
pipeline {
agent none
stages {
stage('Docker Build') {
agent any
steps {
sh 'docker build -t nginx .'
}
}
}
}