diff --git a/Jenkinsfile b/Jenkinsfile index 1a23622..71187ff 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,7 +19,10 @@ pipeline { echo 'Starting docker image build' script { - docker.build("northcode/telegram-leetbot") + docker.withRegistry("pkg.northcode.no") { + def image = docker.build("pkg.northcode.no/telegram-leetbot") + image.push() + } } } }