Files
htpasswd/Jenkinsfile
Julien Cabillot 721d36373e
All checks were successful
perso/htpasswd/master This commit looks good
Fix
2019-06-20 12:50: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"
}
}
}
}
}