diff --git a/Jenkinsfile-prod b/Jenkinsfile-prod index bb99871..8cc2a90 100644 --- a/Jenkinsfile-prod +++ b/Jenkinsfile-prod @@ -13,6 +13,15 @@ pipeline { } } } + stage('Remove Old Image') { + steps { + script { + catchError(buildResult: 'SUCCESS', message: 'Image doesn\'t exist, skipping...', stageResult: 'ABORTED') { + sh 'docker rmi git.ruff.co.il/amai.ig/otomai:latest' + } + } + } + } stage('Run new container in Production') { steps { script { @@ -28,4 +37,4 @@ pipeline { } } } -} \ No newline at end of file +}