Jupyterlab/Jenkinsfile

10 lines
177 B
Plaintext
Raw Normal View History

2018-12-13 16:57:48 +00:00
pipeline {
agent any
stages {
stage('build docker') {
steps {
2018-12-19 17:40:00 +00:00
sh 'docker build -t jupyterlab-sguba .'
2018-12-13 16:57:48 +00:00
}
}
}
}