schedulord-discordbot/Jenkinsfile

19 lines
263 B
Plaintext
Raw Normal View History

2022-06-08 16:04:45 +02:00
pipeline {
2022-06-09 16:41:31 +02:00
agent any
tools {
nodejs "node"
}
stages {
stage('NPM Install') {
steps {
sh 'npm install'
}
2022-06-08 16:04:45 +02:00
}
2022-06-09 16:41:31 +02:00
stage('Build Dockerfile') {
steps {
sh 'docker build . -t schedulord-frontend'
}
}
}
2022-06-08 16:04:45 +02:00
}