Created
April 19, 2017 17:15
-
-
Save kuy/aedcc8ca82c8831763f2f67c7dc027e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
steps: | |
- name: 'gcr.io/cloud-builders/docker' | |
args: ['build', '-t', 'app-build', '-f', 'Dockerfile.build', '.'] | |
- name: 'gcr.io/cloud-builders/docker' | |
args: ['run', '-v', '/workspace/src:/app/src', '-v', '/workspace/build:/app/build', 'app-build'] | |
- name: 'gcr.io/cloud-builders/docker' | |
args: ['build', '-t', 'gcr.io/foo/bar:v1', '.'] | |
images: | |
- 'gcr.io/foo/bar:v1' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment