-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuilder.toml
31 lines (25 loc) · 1.02 KB
/
builder.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
description = "Internal builder image for Salesforce Functions."
[stack]
id = "heroku-22"
build-image = "heroku/heroku:22-cnb-build"
run-image = "heroku/heroku:22-cnb"
[lifecycle]
# We have to use an older lifecycle version in this builder image since lifecycle 0.18.0
# dropped support for Buildpack API versions <0.7, and we know of at least one custom CNB
# used by Functions customers that's using a legacy Buildpack API version:
# https://github.com/CSGAMERSServices/puppeteer-heroku-buildpack
version = "0.17.6"
[[buildpacks]]
id = "heroku/java-function"
uri = "docker://docker.io/heroku/buildpack-java-function@sha256:cca37f578a41ce3de574e31571c34f832cace892ff9e86fc9fb105728e06c26e"
[[buildpacks]]
id = "heroku/nodejs-function"
uri = "docker://docker.io/heroku/buildpack-nodejs-function@sha256:aa5fe8a0c249d96c8c9e5514f24b61806905a32299c3417a1c35e3ac8e3d654c"
[[order]]
[[order.group]]
id = "heroku/nodejs-function"
version = "3.5.1"
[[order]]
[[order.group]]
id = "heroku/java-function"
version = "6.1.1"