-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-bake.hcl
50 lines (42 loc) · 997 Bytes
/
docker-bake.hcl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
variable "OWNER" {
default = "visualon"
}
variable "FILE" {
default = "buildpack"
}
variable "TAG" {
default = "latest"
}
group "default" {
targets = ["build_ghcr", "build_docker"]
}
group "build" {
targets = ["build_ghcr", "build_docker", "push_ghcr"]
}
group "push" {
targets = ["push_ghcr"]
}
group "test" {
targets = ["build_docker"]
}
target "settings" {
context = "./linux"
inherits = ["settings"]
cache-from = ["type=registry,ref=ghcr.io/${OWNER}/cache:${FILE}", "type=registry,ref=ghcr.io/${OWNER}/cache:${FILE}-${TAG}"]
}
target "build_ghcr" {
inherits = ["settings"]
output = ["type=registry"]
tags = ["ghcr.io/${OWNER}/cache:${FILE}-${TAG}"]
cache-to = ["type=inline,mode=max"]
}
target "build_docker" {
inherits = ["settings"]
output = ["type=docker"]
tags = ["ghcr.io/${OWNER}/${FILE}:${TAG}"]
}
target "push_ghcr" {
inherits = ["settings"]
output = ["type=registry"]
tags = ["ghcr.io/${OWNER}/${FILE}:${TAG}"]
}