Files
tabby-web/backend/cloudbuild.yaml

13 lines
187 B
YAML
Raw Normal View History

2021-07-25 20:45:15 +02:00
steps:
- name: 'gcr.io/cloud-builders/docker'
dir: 'backend'
args:
- build
- '-t'
2021-07-26 12:35:38 +02:00
- '${_DOCKER_TAG}'
2021-07-25 20:45:15 +02:00
- '--cache-from'
2021-07-26 12:35:38 +02:00
- '${_DOCKER_TAG}'
2021-07-25 20:45:15 +02:00
- '.'
2021-07-26 12:30:47 +02:00
images: ['${_DOCKER_TAG}']