Import Jenkinsfile
Some checks failed
perso/htpasswd/master There was a failure building this commit

This commit is contained in:
Julien Cabillot 2019-06-20 12:49:32 -04:00
parent 3af487cd4a
commit 33b6f6220a
Signed by: jcabillot
GPG Key ID: EF8F0EB0565E282F

19
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,19 @@
pipeline {
environment {
registry = "jcabillot/htpasswd'
registryCredential = 'dockerhub_jcabillot'
}
agent any
stages {
stage('Building image') {
steps{
script {
docker.build registry + ":master"
}
}
}
}
}