diff --git a/Jenkinsfile b/Jenkinsfile index ca3175a..17cb593 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,8 +13,6 @@ pipeline { } } stage('Build') { - steps { - script { docker.withRegistry('https://git.adrianux.net/ahoemann/') { /* Build the container image */ @@ -23,9 +21,6 @@ pipeline { /* Push the container to the custom Registry */ dockerImage.push() } - /* Remove docker image*/ - sh 'docker rmi -f adrianux:${env.BUILD_ID}' - } } } }