summaryrefslogtreecommitdiff
path: root/Jenkinsfile
blob: bc5a27efbff737a09920eda27593f78d2a6f38d0 (plain)
1
2
3
4
5
6
7
8
9
10
pipeline {
    agent { docker { image 'python:3.5.1' } }
    stages {
        stage('build') {
            steps {
                sh 'python app/main.py'
            }
        }
    }
}