An open API service indexing awesome lists of open source software.

https://github.com/jameswoolfenden/gcp-container-cloudbuild

A short example - how to build a spring bot app with Cloud Build
https://github.com/jameswoolfenden/gcp-container-cloudbuild

cloudbuild example gcp

Last synced: 11 months ago
JSON representation

A short example - how to build a spring bot app with Cloud Build

Awesome Lists containing this project

README

          

# How to build a spring boot container in Cloud build

Set-up your repository, and then set-up your project to use a trigger (in cloud build).
Choose the option:

```option
Cloud Build configuration file (yaml or json)
Specify the path to a Cloud Build configuration file
```

Then update **cloudbuild.yaml**:

```yaml
args: ['build', '--tag=gcr.io//', '.']
images: ['gcr.io//']
```

With your project and container name.