»build Stanza
| Placement | app -> build |
The build stanza describes how an application is built. Waypoint converts
application source code into an artifact. Waypoint can store the image locally,
or push it to a remote registry. Read more about the
build phase of the application lifecycle here.
Exactly one build stanza is required within an app stanza.
app "frontend" {
build {
use "docker" {}
registry {
# ...
}
hook {
# ...
}
}
# ...
}
»build Parameters
»Required
use(use)- The plugin to use for building the application. For example, the "docker" plugin will usedocker buildto build your application.