forked from intervention-engine/fhir
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcloudBuild.json
More file actions
28 lines (27 loc) · 733 Bytes
/
cloudBuild.json
File metadata and controls
28 lines (27 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"options": {
"machineType": "N1_HIGHCPU_8"
},
"steps": [
{
"name": "gcr.io/cloud-builders/docker",
"id": "docker-build-standalone",
"args": [
"build", "-f", "Dockerfile", "-t", "gcr.io/$PROJECT_ID/fhir-server:$COMMIT_SHA", "."
]
},
{
"name": "gcr.io/cloud-builders/docker",
"id": "docker-build-with-mongo",
"waitFor": [ "-" ],
"args": [
"build", "-f", "Dockerfile-with-mongo", "-t", "gcr.io/$PROJECT_ID/fhir-server-with-mongo:$COMMIT_SHA", "."
]
}
],
"images": [
"gcr.io/$PROJECT_ID/fhir-server-with-mongo",
"gcr.io/$PROJECT_ID/fhir-server"
],
"timeout": "1200s"
}