mirror of
https://github.com/docker/bake-action.git
synced 2025-07-14 12:41:53 +02:00
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\"]"
|
|
}
|