Jupyterlab/Jenkinsfile

10 lines
171 B
Plaintext
Raw Normal View History

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