diff --git a/Jenkinsfile b/Jenkinsfile index 9b3ea33..2085c57 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,14 +11,8 @@ pipeline { } stage ('Push Image') { - steps { - script { - docker.withRegistry("https://registry.hub.docker.com", 'dockerhub') { - dockerapp.push('latest') - dockerapp.push("${env.BUILD_ID}") - } - } - } + dockerapp.push('latest') + dockerapp.push("${env.BUILD_ID}") } } }