forked from coreui/coreui-free-react-admin-template
-
Notifications
You must be signed in to change notification settings - Fork 29
/
cloudbuild.yaml
35 lines (35 loc) · 966 Bytes
/
cloudbuild.yaml
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
29
30
31
32
33
34
35
steps:
# Build the container image
- name: 'gcr.io/cloud-builders/docker'
entrypoint: 'bash'
args: ['-c', 'docker pull gcr.io/$PROJECT_ID/eeplus || true']
# Build the container image
- name: 'gcr.io/cloud-builders/docker'
args:
- 'build'
- '--cache-from'
- 'gcr.io/$PROJECT_ID/eeplus'
- '-t'
- 'gcr.io/$PROJECT_ID/eeplus'
- '--build-arg'
- 'MONGO_URI=${_MONGO_URI}'
- '--build-arg'
- 'REACT_APP_fbAPIid=${_FB_APPID}'
- '.'
# Push the container image to Container Registry
- name: 'gcr.io/cloud-builders/docker'
args: ['push', 'gcr.io/$PROJECT_ID/eeplus']
# Deploy container image to Cloud Run
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
entrypoint: gcloud
args:
- 'run'
- 'deploy'
- 'eeplus'
- '--image'
- 'gcr.io/$PROJECT_ID/eeplus'
- '--region'
- 'asia-east1'
images:
- 'gcr.io/$PROJECT_ID/eeplus'
timeout: 1200s