mirror of
https://github.com/docker/bake-action.git
synced 2026-04-24 01:00:57 +02:00
5c57af45fc
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
13 lines
279 B
HCL
13 lines
279 B
HCL
group "default" {
|
|
targets = ["lint", "lint-other", "lint-inline"]
|
|
}
|
|
target "lint" {
|
|
dockerfile = "lint.Dockerfile"
|
|
}
|
|
target "lint-other" {
|
|
dockerfile = "lint-other.Dockerfile"
|
|
}
|
|
target "lint-inline" {
|
|
dockerfile-inline = "FRoM alpine\nENTRYPOINT [\"echo\", \"hello\"]"
|
|
}
|