Jupyterlab/Jenkinsfile
2019-03-15 16:44:06 +00:00

10 lines
177 B
Groovy

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