forked from vxmppb/vxmppb
Adding jenkinsfile
This commit is contained in:
parent
0e6d4840a4
commit
bac9ec05ed
15
Jenkinsfile
vendored
Normal file
15
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
pipeline {
|
||||
agent {
|
||||
docker {
|
||||
image 'node:lts-buster-slim'
|
||||
args '-p 3000:3000'
|
||||
}
|
||||
}
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh 'npm install'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user