dsite/Jenkinsfile
2022-01-16 01:44:35 +08:00

17 lines
190 B
Groovy

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