Skip to content

Commit 6526199

Browse files
author
Nirmal AK
committed
Adds cloudbuild
1 parent f8f22f9 commit 6526199

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

cloudbuild.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
steps:
2+
3+
- id: build-image
4+
name: 'gcr.io/cloud-builders/docker'
5+
args: ['build', '-f', 'Dockerfile', '.', '-t', 'gcr.io/$PROJECT_ID/ethereum-etl:${_TAG_NAME}']
6+
7+
- id: push-image
8+
name: 'gcr.io/cloud-builders/docker'
9+
args: ['push', 'gcr.io/$PROJECT_ID/ethereum-etl:${_TAG_NAME}']
10+
waitFor: ['build-image']
11+
12+
timeout: 600s

0 commit comments

Comments
 (0)