quitando Jenkisfile

This commit is contained in:
2023-01-23 15:16:40 -06:00
parent 2380c5a26e
commit c1705d2c0c

11
jj Normal file
View File

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