From 20b4a54a6770d1e3830c6437fa33b1df6f644be9 Mon Sep 17 00:00:00 2001 From: ahoemann Date: Thu, 20 Mar 2025 14:38:24 +0100 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 5 ----- 1 file changed, 5 deletions(-) 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}' - } } } }