htpasswd/Jenkinsfile
Julien Cabillot 33b6f6220a
Some checks failed
perso/htpasswd/master There was a failure building this commit
Import Jenkinsfile
2019-06-20 12:49:32 -04:00

20 lines
274 B
Groovy

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