From a9288f2376c6b13ec7b1957ba947929ef73c90d5 Mon Sep 17 00:00:00 2001 From: David Freilich Date: Wed, 11 Aug 2021 17:00:00 +0300 Subject: [PATCH 1/2] Add support for Tiny stack The `io.paketo.stacks.tiny` [supports](https://github.com/paketo-buildpacks/base-stack-release/blob/main/build-receipt) Git, which should be all that's necessary for this buildpack. --- buildpack.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/buildpack.toml b/buildpack.toml index 1dfa11a..982b046 100644 --- a/buildpack.toml +++ b/buildpack.toml @@ -17,5 +17,8 @@ api = "0.2" [[stacks]] id = "io.buildpacks.stacks.bionic" +[[stacks]] + id = "io.paketo.stacks.tiny" + [[stacks]] id = "org.cloudfoundry.stacks.cflinuxfs3" From 03d413be189cf463cd34441b9afa207d461c3631 Mon Sep 17 00:00:00 2001 From: David Freilich Date: Wed, 11 Aug 2021 18:07:38 +0300 Subject: [PATCH 2/2] Add support for Heroku and Google builders This would include support for all recommended builders, all of which can work with this buildpack --- buildpack.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/buildpack.toml b/buildpack.toml index 982b046..8eb01d1 100644 --- a/buildpack.toml +++ b/buildpack.toml @@ -20,5 +20,11 @@ api = "0.2" [[stacks]] id = "io.paketo.stacks.tiny" +[[stacks]] + id = "heroku-20" + +[[stacks]] + id = "google" + [[stacks]] id = "org.cloudfoundry.stacks.cflinuxfs3"