Update Jenkinsfile

This commit is contained in:
Bill Church 2018-10-23 10:53:55 -04:00
parent 88f050bbcf
commit 809c1db941

15
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,15 @@
pipeline {
agent {
docker {
image 'node:6-alpine'
args '-p 3000:3000'
}
}
stages {
stage('Build') {
steps {
sh 'npm install'
}
}
}
}