schedulord-discordbot/Jenkinsfile

19 lines
263 B
Plaintext
Raw Normal View History

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