diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index f3bf37a..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/groovy -image = "wildduck-exporter" -label = "latest" -build = null - -node { - stage("Checkout") { - checkout scm - } - - stage("Build") { - build = docker.build("kspaceee/${image}") - } - - stage("Push") { - docker.withRegistry("https://registry.hub.docker.com", "dockerhub-kspace") { - build.push(label) - } - } -}