Spring boot maven plugin is using paketo builder to build images.
gcr.io/paketo-buildpacks/builder:base-platform-api-0.3
What I would like to do is to add another step to what is being done by this builder. I've created my own buildpack and tried to create builder with base buildpacks included.
builder.toml
...
...
[[buildpacks]]
image = "my-own-buildpack"
[[buildpacks]]
image = "gcr.io/paketo-buildpacks/builder:base-platform-api-0.3"
...
First problem that I'm having is this error when trying to create a builder out of builder.toml:
ERROR: failed to add buildpacks to builder: extracting buildpacks from gcr.io/paketo-buildpacks/builder:base-platform-api-0.3: could not find label io.buildpacks.buildpackage.metadata
Another problem is that even if that worked I guess I would still have to specify all order.group from paketo:base.
Is there actually a way to create a builder out of paketo-buildpacks/builder without going into details of what is happening inside?