Jupyterlab/Jenkinsfile
2018-12-13 16:57:48 +00:00

10 lines
171 B
Groovy

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