Jupyterlab/Jenkinsfile
2019-03-15 16:11:25 +00:00

10 lines
188 B
Groovy

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