Adding jenkinsfile

This commit is contained in:
Stephen Vanderwarker 2021-06-20 09:57:44 -04:00
parent 0e6d4840a4
commit bac9ec05ed
1 changed files with 15 additions and 0 deletions

15
Jenkinsfile vendored Normal file
View File

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