htpasswd/Jenkinsfile

20 lines
274 B
Plaintext
Raw Normal View History

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