Last active
June 22, 2020 11:44
-
-
Save jkutner/a4df513d8b87c37ae382f559574bf1ad 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
[project] | |
id = "io.buildpacks.my-app" | |
version = "0.1" | |
[build] | |
include = [ | |
"cmd/", | |
"go.mod", | |
"go.sum", | |
"*.go" | |
] | |
mixins = [ | |
"build:libpq-dev", | |
"run:libpq" | |
] | |
[[build.buildpacks]] | |
id = "io.buildpacks/java" | |
version = "1.0" | |
[[build.buildpacks]] | |
id = "io.buildpacks/nodejs" | |
version = "1.0" | |
[metadata] | |
foo = "bar" | |
[metadata.fizz] | |
buzz = ["a", "b", "c"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment