htpasswd/Jenkinsfile

20 lines
274 B
Plaintext
Raw Normal View History

2019-06-20 12:49:32 -04:00
pipeline {
environment {
registry = "jcabillot/htpasswd'
registryCredential = 'dockerhub_jcabillot'
}
agent any
stages {
stage('Building image') {
steps{
script {
docker.build registry + ":master"
}
}
}
}
}