feature/jenkinsfile

hello world
Tento commit je obsažen v:
kudlaty 2018-03-22 18:30:13 +01:00
rodič 128e9ba59f
revize 3a69e1ff64

15
Jenkinsfile vendorováno Normální soubor
Zobrazit soubor

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