This buildpack is meant to be used at the end of the buildpack order definition and will write a start command that is generated from the contents of an entrypoint.toml
in the base of the application directory. The entrypoint.toml
is meant to reflect the contents of launch.toml
that is currently supported by packit
.
To package this buildpack for consumption:
$ ./scripts/package.sh
This builds the buildpack's Go source using GOOS=linux
by default. You can
supply another value as the first argument to package.sh
.
[[processes]]
type = "<process type>"
command = "<command>"
args = ["<arguments>"]
direct = false
If you are looking for concrete definitions on what these fields do inside of packit
you can check the documentation here. For the definition from the Cloud Native Buildpack specification itself you can check out the documentation here.