Compare commits
1 Commits
5a2926b76f
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
20b058b221
|
@@ -6,9 +6,23 @@ group "default" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
target "docker-metadata-action" {}
|
target "docker-metadata-action" {}
|
||||||
|
target "cache" {
|
||||||
|
cache-from = [
|
||||||
|
{
|
||||||
|
type = "gha",
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
cache-to = [
|
||||||
|
{
|
||||||
|
type = "gha",
|
||||||
|
mode = "max"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
target "lldap-controller" {
|
target "lldap-controller" {
|
||||||
inherits = ["docker-metadata-action"]
|
inherits = ["docker-metadata-action", "cache"]
|
||||||
context = "./"
|
context = "./"
|
||||||
dockerfile = "Dockerfile"
|
dockerfile = "Dockerfile"
|
||||||
tags = [for tag in target.docker-metadata-action.tags : "${TAG_BASE}:${tag}"]
|
tags = [for tag in target.docker-metadata-action.tags : "${TAG_BASE}:${tag}"]
|
||||||
@@ -16,6 +30,7 @@ target "lldap-controller" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
target "manifests" {
|
target "manifests" {
|
||||||
|
inherits = ["cache"]
|
||||||
context = "./"
|
context = "./"
|
||||||
dockerfile = "Dockerfile"
|
dockerfile = "Dockerfile"
|
||||||
target = "manifests"
|
target = "manifests"
|
||||||
|
|||||||
Reference in New Issue
Block a user