Jenkins/Jenkinsfile
2018-12-13 15:29:21 +00:00

10 lines
166 B
Groovy

pipeline {
agent any
stages {
stage('test') {
steps {
sh 'docker build -t jenkins-sguba .'
}
}
}
}