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
| #Note: Before start below steps, Cloud SQL Admin API must be enabled in GCP Project. | |
| cd /var/run/; | |
| sudo mkdir cloud_sql_proxy; | |
| #Go to Home directory | |
| mkdir proxy; | |
| cd proxy; | |
| #download Cloud SQL Proxy |
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' | |
| - '-f' | |
| - 'Dockerfile.alpine' | |
| - '-t' | |
| - 'gcr.io/$PROJECT_ID/large-docker-alpine:latest' | |
| - '.' | |
| waitFor: ['-'] |