webssh2/Jenkinsfile
2018-10-23 10:53:55 -04:00

15 lines
No EOL
248 B
Groovy

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