Some checks failed
perso/htpasswd/master There was a failure building this commit
20 lines
274 B
Groovy
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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|