Merge branch 'develop' of git.tunpok.com:ching/dsite into develop

This commit is contained in:
Ching 2022-01-16 13:17:33 +08:00
commit 3e206522e8

24
Jenkinsfile vendored
View File

@ -1,15 +1,17 @@
pipeline { pipeline {
agent { agent {
docker { docker {
image 'node:6-alpine' image 'node:6-alpine'
args '-p 3000:3000' args '-p 4000:4000'
}
} }
stages {
stage('Build') { }
steps { stages {
sh 'cd frontend; npm install; npm run build' stage('Build') {
} steps {
} sh 'npm install'
}
} }
}
} }