Update jenkinsfile

This commit is contained in:
2025-11-20 15:51:51 +00:00
parent 19dc42f0a5
commit 47c6693d1d

View File

@@ -40,13 +40,13 @@ pipeline {
stage('Spring Docker Build') { stage('Spring Docker Build') {
steps { steps {
sh 'docker-compose build spring' sh 'docker build -t registry.unifihomenetwork.com/gameovergne-api:dev-latest ./api'
} }
} }
stage('Angular Docker Build') { stage('Angular Docker Build') {
steps { steps {
sh 'docker-compose build angular' sh 'docker build -t registry.unifihomenetwork.com/gameovergne-client:dev-latest ./client'
} }
} }