Jupyterlab/Jenkinsfile
2018-12-19 17:40:00 +00:00

10 lines
177 B
Groovy

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