simple-python-pyinstaller-app/Jenkinsfile
kudlaty 3a69e1ff64 feature/jenkinsfile
hello world
2018-03-22 18:30:13 +01:00

15 lines
No EOL
274 B
Groovy

pipeline{
agent none
stages {
stage('Build') {
agent {
docker {
image 'python:2-alpine'
}
}
steps {
sh 'echo Hello World!'
}
}
}
}