Skip to content

Commit cb9cd5d

Browse files
author
Yufeng
committed
Add initial Jenkinsfile
1 parent 998a172 commit cb9cd5d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Jenkinsfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
pipeline {
2+
agent {
3+
docker {
4+
image 'node:6-alpine'
5+
args '-p 3000:3000'
6+
}
7+
}
8+
stages {
9+
stage('Build') {
10+
steps {
11+
sh 'npm install'
12+
}
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)