feature/jenkinsfile

hello world
This commit is contained in:
kudlaty 2018-03-22 18:30:13 +01:00
parent 128e9ba59f
commit 3a69e1ff64

15
Jenkinsfile vendored Normal file
View file

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