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

This commit is contained in:
Julien Cabillot 2019-06-20 12:56:12 -04:00
parent 0f025918af
commit f1d9540cc1
Signed by: jcabillot
GPG Key ID: EF8F0EB0565E282F

3
Jenkinsfile vendored
View File

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