schedulord-discordbot/Jenkinsfile
James@SCF-GC 151a037e32
All checks were successful
Schedulord/schedulord-discordbot/pipeline/head This commit looks good
updated
2022-06-09 16:41:31 +02:00

19 lines
263 B
Groovy

pipeline {
agent any
tools {
nodejs "node"
}
stages {
stage('NPM Install') {
steps {
sh 'npm install'
}
}
stage('Build Dockerfile') {
steps {
sh 'docker build . -t schedulord-frontend'
}
}
}
}