-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The builder images in this repository fall into two main groups: 1. The legacy `heroku/buildpacks:*` builder namespace that use a mixture of native CNBs and shimmed classic buildpacks. 2. The newer `heroku/builder:*` builder namespace that uses only native (non-shimmed) CNBs. Previously, if someone wanted to use the newer builder image type they had to use `heroku/builder:22` which is based on the Heroku-22 stack (Ubuntu 22.04). Now, if someone needs to use Heroku-20 (Ubuntu 20.04), they can do so via a new `heroku/builder:20` image, rather than needing to fall back to the older `heroku/buildpacks:20` image and its shimmed classic buildpacks. This will make it easier for us to deprecate `heroku/buildpacks:20` in future PRs, since there will now be an easier upgrade paths for users that need eg older language runtime versions of Python/Ruby/PHP etc. The new `heroku/builder:20` builder image variant is identical to `heroku/builder:22`, except: - it uses Heroku-20 based run/build-images - it doesn't include the java/node.js functions buildpacks (which are due to be removed from `heroku/builder:22` soon in favour of the newly added salesforce-functions image variant). For more details, see: https://salesforce.quip.com/0JtbAYiWZYk6 GUS-W-14184901.
- Loading branch information
Showing
4 changed files
with
111 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
description = "Base builder for Heroku-20 stack, based on ubuntu:20.04 base image" | ||
|
||
[stack] | ||
id = "heroku-20" | ||
build-image = "heroku/heroku:20-cnb-build" | ||
run-image = "heroku/heroku:20-cnb" | ||
|
||
[lifecycle] | ||
version = "0.17.1" | ||
|
||
[[buildpacks]] | ||
id = "heroku/go" | ||
uri = "docker://docker.io/heroku/buildpack-go@sha256:922fe2337450d9570b4eae2aaefc805068c73053d7d7c4c4ae0da1c06bddb73e" | ||
|
||
[[buildpacks]] | ||
id = "heroku/java" | ||
uri = "docker://docker.io/heroku/buildpack-java@sha256:3b69171e416c8062b3caefc97c206cd006a197773e380d09cb7f704a10147dee" | ||
|
||
[[buildpacks]] | ||
id = "heroku/nodejs" | ||
uri = "docker://docker.io/heroku/buildpack-nodejs@sha256:5000a0f8ca2f440bedc24dd1a75dd20c60ffb8ff1708b7490d67aa290f280606" | ||
|
||
[[buildpacks]] | ||
id = "heroku/php" | ||
uri = "docker://docker.io/heroku/buildpack-php@sha256:19e44139b850b3b9040f21d436ec693f0dff82e931bbff500e9876f4febacd0e" | ||
|
||
[[buildpacks]] | ||
id = "heroku/procfile" | ||
uri = "docker://docker.io/heroku/procfile-cnb@sha256:ea7219d4bb50196b4f292c9aae397b17255c59a243d7408535d2a03a5cd2b040" | ||
|
||
[[buildpacks]] | ||
id = "heroku/python" | ||
uri = "docker://docker.io/heroku/buildpack-python@sha256:537221283e7040997e006c90782ba93ed01edf0de705d013b474aa5ee82979fc" | ||
|
||
[[buildpacks]] | ||
id = "heroku/ruby" | ||
uri = "docker://docker.io/heroku/buildpack-ruby@sha256:fd32f123fdfa3e94eeb4ce2ad82aad353f6a3b87ac70bfebfdd30cc41927a737" | ||
|
||
[[buildpacks]] | ||
id = "heroku/scala" | ||
uri = "docker://docker.io/heroku/buildpack-scala@sha256:14169e0dd1531b00f3d423787618425f1739af02ba21a9a6d88c4bc7024574cb" | ||
|
||
[[order]] | ||
[[order.group]] | ||
id = "heroku/python" | ||
version = "0.7.0" | ||
[[order.group]] | ||
id = "heroku/procfile" | ||
version = "2.0.1" | ||
optional = true | ||
|
||
[[order]] | ||
[[order.group]] | ||
id = "heroku/nodejs-engine" | ||
version = "1.1.6" | ||
optional = true | ||
[[order.group]] | ||
id = "heroku/nodejs-yarn" | ||
version = "1.1.6" | ||
optional = true | ||
[[order.group]] | ||
id = "heroku/jvm" | ||
version = "3.2.0" | ||
optional = true | ||
[[order.group]] | ||
id = "heroku/ruby" | ||
version = "2.0.1" | ||
[[order.group]] | ||
id = "heroku/procfile" | ||
version = "2.0.1" | ||
optional = true | ||
|
||
[[order]] | ||
[[order.group]] | ||
id = "heroku/nodejs" | ||
version = "1.1.6" | ||
|
||
[[order]] | ||
[[order.group]] | ||
id = "heroku/java" | ||
version = "3.2.0" | ||
|
||
[[order]] | ||
[[order.group]] | ||
id = "heroku/scala" | ||
version = "3.2.0" | ||
|
||
[[order]] | ||
[[order.group]] | ||
id = "heroku/go" | ||
version = "0.1.9" | ||
[[order.group]] | ||
id = "heroku/procfile" | ||
version = "2.0.1" | ||
optional = true | ||
|
||
[[order]] | ||
[[order.group]] | ||
id = "heroku/php" | ||
version = "0.1.1" | ||
[[order.group]] | ||
id = "heroku/procfile" | ||
version = "2.0.1" | ||
optional = true |