mirror of
https://github.com/dokku/dokku.git
synced 2026-05-18 05:05:46 +02:00
The previous lever for manipulating this was the DOKKU_IMAGE environment variable. While this is all well and good, it only works for CNB and is yet another `DOKKU_*` environment variable that need not exist. While this does not add support for manipulating the CNB stack just yet, the groundwork is set for the future. Closes #4306
14 lines
325 B
Go
14 lines
325 B
Go
package buildpacks
|
|
|
|
var (
|
|
// DefaultProperties is a map of all valid buildpacks properties with corresponding default property values
|
|
DefaultProperties = map[string]string{
|
|
"stack": "",
|
|
}
|
|
|
|
// GlobalProperties is a map of all valid global buildpacks properties
|
|
GlobalProperties = map[string]bool{
|
|
"stack": true,
|
|
}
|
|
)
|