2 Commits

Author SHA1 Message Date
8b276f9828 added docker
All checks were successful
InnoHub Processor/tatort/pipeline/head This commit looks good
2025-06-25 11:50:13 +02:00
56cfd79687 added docker 2025-06-25 11:49:58 +02:00

38
Jenkinsfile vendored
View File

@@ -7,25 +7,31 @@ 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 {
branch 'development'
}
// stage('Build') {
// when {
// branch 'development'
// }
// steps {
// sh 'npm run build'
// }
// }
stage('Containerize') {
steps {
sh 'npm run build'
sh 'docker -h'
}
}
}