add Jenkinsfile for php image

This commit is contained in:
2019-02-09 22:40:01 -05:00
parent 73f322b0b9
commit 43e7eda6a7

13
dockerfiles/tasks/php/Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,13 @@
pipeline {
agent any
triggers {
cron('@daily')
}
stages {
stage('Build Image') {
steps {
build job: '_build_image', parameters: [string(name: 'IMAGE', value: 'php')], quietPeriod: 1
}
}
}
}