From 4bd0556f65a1d59258cd10522a72c492315e6e76 Mon Sep 17 00:00:00 2001 From: "andreas.dinauer" Date: Sat, 1 Nov 2025 21:12:36 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Remove=20Image=20from=20host?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index cfc747d..3da22e4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,5 +27,12 @@ pipeline { } } } + stage('Remove image from host') { + steps { + script { + sh "docker image rm --force ${env.IMAGE}" + } + } + } } } \ No newline at end of file