Browse Source

Update Jenkinsfile

pull/116/head
Bill Church 7 years ago
parent
commit
809c1db941
  1. 15
      Jenkinsfile

15
Jenkinsfile

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