simple-python-pyinstaller-app/Jenkinsfile
kudlaty 0267d9af1a feature/kjug
added build step
2018-03-22 18:33:28 +01:00

16 lines
No EOL
334 B
Groovy

pipeline{
agent none
stages {
stage('Build') {
agent {
docker {
image 'python:2-alpine'
}
}
steps {
sh 'pip install flask'
sh 'python -m py_compile sources/webapp.py'
}
}
}
}