This commit is contained in:
Juan 2018-05-10 19:09:42 +02:00
commit 3a62f25c70
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -32,15 +32,15 @@ node {
stage ('Install client Node dependencies') {
sh "npm install"
}
stage ('Removing old dockers') {
sh "docker-compose down --rmi 'all'"
}
stage ('Build project') {
sh "gulp build"
}
stage ('Install services Node dependencies') {
sh "cd ./services/loopback && npm install"
}
stage ('Removing old dockers') {
sh "docker-compose down --rmi 'all'"
}
stage ('Generating new dockers') {
sh "docker-compose up -d --build"
}