fixed push image
Some checks failed
InnoHub Processor/tatort/pipeline/head There was a failure building this commit

This commit is contained in:
2025-06-25 15:18:54 +02:00
parent 997ef6e30d
commit 331b9c22e1

32
Jenkinsfile vendored
View File

@@ -14,18 +14,18 @@ pipeline {
// }
stages {
stage('Install Dependencies') {
steps {
sh 'npm ci'
}
}
// stage('Install Dependencies') {
// steps {
// sh 'npm ci'
// }
// }
stage('Test & Security Audit') {
steps {
echo 'Start checking security vulnerabilities in npm packages'
sh 'npm audit'
}
}
// stage('Test & Security Audit') {
// steps {
// echo 'Start checking security vulnerabilities in npm packages'
// sh 'npm audit'
// }
// }
// stage('Build') {
// when {
@@ -47,11 +47,11 @@ pipeline {
stage('Push image in gitea registry') {
steps {
echo 'Start Pushing'
// script {
// docker.withRegistry("${ REGISTRY }", 'docker-login') {
// docker.build("${ IMAGE }").push('latest')
// }
//}
script {
docker.withRegistry('https://gitea.innovation-hub-niedersachsen.de/', 'docker-login') {
docker.build('tatort-app').push('latest')
}
}
}
}
}