Add deploy
All checks were successful
perso/htpasswd/master This commit looks good

This commit is contained in:
2019-06-20 12:56:12 -04:00
parent 0f025918af
commit f1d9540cc1

3
Jenkinsfile vendored
View File

@@ -1,5 +1,4 @@
pipeline {
environment {
registry = 'jcabillot/htpasswd'
registryCredential = 'dockerhub_jcabillot'
@@ -12,7 +11,7 @@ pipeline {
stage('Building image') {
steps{
script {
docker.build registry + ":master"
dockerImage = docker.build registry + ":master"
}
}
}