Skip to content

Commit

Permalink
Merge branch 'master' of github.com:hvpulok/lockessential
Browse files Browse the repository at this point in the history
  • Loading branch information
hvpulok committed Jul 1, 2018
2 parents 0c0448a + 4436a1b commit a20d5e4
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
pipeline {
agent {
docker {
image 'node:6-alpine'
args '-p 3000:3000'
}
}
stages {
stage('NPM') {
steps {
sh 'npm install'
}
}
stage('Build') {
steps {
sh 'npm run start:prod'
}
}
}
}

0 comments on commit a20d5e4

Please sign in to comment.