GoogleCloudPlatform / cloud-run-button

Let anyone deploy your GitHub repos to Google Cloud Run with a single click
https://cloud.run
Apache License 2.0
526 stars 91 forks source link

Allow Buildpack Builder Image Override Via app.json #170

Closed jamesward closed 4 years ago

jamesward commented 4 years ago

Proposed app.json schema:

"build": {
    "buildpacks": {
        "builderimage": "heroku/buildpacks"
    }
}
ahmetb commented 4 years ago

Prob can shorten builderimage as "builder" if all builders are going to be images. Other than that I think this is good.

This field can also help the tool follow buildpacks code path directly.

jamesward commented 4 years ago

good call. And builder is what the pack command uses. :)

jamesward commented 4 years ago

Updated schema:

"build": {
    "buildpacks": {
        "builder": "heroku/buildpacks"
    }
}