-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
20 lines (17 loc) · 843 Bytes
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
node {
checkout scm
docker.withRegistry('https://docker.pkg.github.com', 'github') {
stage('Build Web Client') {
docker.build("docker.pkg.github.com/maxjoehnk/remote-party-games/web-client:latest", '-f applications/web-client/Dockerfile .').push()
}
stage('Build Matchmaking') {
docker.build("docker.pkg.github.com/maxjoehnk/remote-party-games/matchmaking:latest", '-f applications/matchmaking/Dockerfile .').push()
}
stage('Build Proxy') {
docker.build("docker.pkg.github.com/maxjoehnk/remote-party-games/proxy:latest", './applications/proxy').push()
}
stage('Build Image Service') {
docker.build("docker.pkg.github.com/maxjoehnk/remote-party-games/image:latest", '-f applications/image/Dockerfile .').push()
}
}
}