Last active
July 6, 2020 17:24
-
-
Save jkutner/d54af306952171bc512cdc07b6b00fd6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
[[build.buildpacks]] | |
id = "cnb/make" | |
version = "1.0" | |
[[build.buildpacks]] | |
uri = "https://github.com/heroku/nodejs-engine-buildpack/releases/download/v0.4.4/nodejs-engine-buildpack-v0.4.4.tgz" | |
[[build.buildpacks]] | |
uri = "docker://gcr.io/projectriff/node-function:0.6.1" | |
[[build.buildpacks]] | |
uri = "cnb://buildpacks.io/cnb/make" | |
[[build.buildpacks]] | |
api = "0.3" | |
shell = "bash" | |
inline = """ | |
rake war | |
rake db:migrate | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Maybe we move the definition of the buildpack to its own table in
project.toml
. Something like:That way it's more like
pack build --buildpack mycustomone
. This could also pave the way forbuildpack.toml
support. This might not fit your idea though. It's a bit closer to packfile.