Create cloudbuild.yaml

This commit is contained in:
Eugene Pankov
2021-11-21 00:15:27 +01:00
parent 34ac0781c2
commit f5b2866421

14
cloudbuild.yaml Normal file
View File

@@ -0,0 +1,14 @@
steps:
- name: 'gcr.io/cloud-builders/docker'
dir: '.'
args:
- build
- '-t'
- '${_DOCKER_TAG}'
- '--cache-from'
- '${_DOCKER_TAG}'
- '--build-arg'
- 'EXTRA_DEPS=${_EXTRA_DEPS}'
- '.'
images: ['${_DOCKER_TAG}']