diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..a68ecaf --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,19 @@ +pipeline { + + environment { + registry = "jcabillot/htpasswd' + registryCredential = 'dockerhub_jcabillot' + } + + agent any + + stages { + stage('Building image') { + steps{ + script { + docker.build registry + ":master" + } + } + } + } +}