-
-
Notifications
You must be signed in to change notification settings - Fork 748
Expand file tree
/
Copy pathdocker-bake.hcl
More file actions
153 lines (129 loc) · 3.24 KB
/
docker-bake.hcl
File metadata and controls
153 lines (129 loc) · 3.24 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# Variables for reuse
variable "VERSION" {
default = "latest"
}
variable "REGISTRY" {
default = "ghcr.io"
}
variable "OWNER" {
default = "remsky"
}
variable "REPO" {
default = "kokoro-fastapi"
}
variable "DOWNLOAD_MODEL" {
default = "true"
}
# Common settings shared between targets
target "_common" {
context = "."
args = {
DEBIAN_FRONTEND = "noninteractive"
DOWNLOAD_MODEL = "${DOWNLOAD_MODEL}"
}
}
# Base settings for CPU builds
target "_cpu_base" {
inherits = ["_common"]
dockerfile = "docker/cpu/Dockerfile"
}
# Base settings for GPU builds
target "_gpu_base" {
inherits = ["_common"]
dockerfile = "docker/gpu/Dockerfile"
}
# CPU target with multi-platform support
target "cpu" {
inherits = ["_cpu_base"]
platforms = ["linux/amd64", "linux/arm64"]
tags = [
"${REGISTRY}/${OWNER}/${REPO}-cpu:${VERSION}",
"${REGISTRY}/${OWNER}/${REPO}-cpu:latest"
]
}
# GPU target with multi-platform support
target "gpu" {
inherits = ["_gpu_base"]
platforms = ["linux/amd64", "linux/arm64"]
tags = [
"${REGISTRY}/${OWNER}/${REPO}-gpu:${VERSION}",
"${REGISTRY}/${OWNER}/${REPO}-gpu:latest"
]
}
# Base settings for AMD ROCm builds
target "_rocm_base" {
inherits = ["_common"]
dockerfile = "docker/rocm/Dockerfile"
}
# Individual platform targets for debugging/testing
target "cpu-amd64" {
inherits = ["_cpu_base"]
platforms = ["linux/amd64"]
tags = [
"${REGISTRY}/${OWNER}/${REPO}-cpu:${VERSION}-amd64",
"${REGISTRY}/${OWNER}/${REPO}-cpu:latest-amd64"
]
}
target "cpu-arm64" {
inherits = ["_cpu_base"]
platforms = ["linux/arm64"]
tags = [
"${REGISTRY}/${OWNER}/${REPO}-cpu:${VERSION}-arm64",
"${REGISTRY}/${OWNER}/${REPO}-cpu:latest-arm64"
]
}
target "gpu-amd64" {
inherits = ["_gpu_base"]
platforms = ["linux/amd64"]
tags = [
"${REGISTRY}/${OWNER}/${REPO}-gpu:${VERSION}-amd64",
"${REGISTRY}/${OWNER}/${REPO}-gpu:latest-amd64"
]
}
target "gpu-arm64" {
inherits = ["_gpu_base"]
platforms = ["linux/arm64"]
tags = [
"${REGISTRY}/${OWNER}/${REPO}-gpu:${VERSION}-arm64",
"${REGISTRY}/${OWNER}/${REPO}-gpu:latest-arm64"
]
}
# AMD ROCm only supports x86
target "rocm-amd64" {
inherits = ["_rocm_base"]
platforms = ["linux/amd64"]
tags = [
"${REGISTRY}/${OWNER}/${REPO}-rocm:${VERSION}-amd64",
"${REGISTRY}/${OWNER}/${REPO}-rocm:latest-amd64"
]
}
# Development targets for faster local builds
target "cpu-dev" {
inherits = ["_cpu_base"]
# No multi-platform for dev builds
tags = ["${REGISTRY}/${OWNER}/${REPO}-cpu:dev"]
}
target "gpu-dev" {
inherits = ["_gpu_base"]
# No multi-platform for dev builds
tags = ["${REGISTRY}/${OWNER}/${REPO}-gpu:dev"]
}
group "dev" {
targets = ["cpu-dev", "gpu-dev"]
}
# Build groups for different use cases
group "cpu-all" {
targets = ["cpu", "cpu-amd64", "cpu-arm64"]
}
group "gpu-all" {
targets = ["gpu", "gpu-amd64", "gpu-arm64"]
}
group "rocm-all" {
targets = ["rocm-amd64"]
}
group "all" {
targets = ["cpu", "gpu", "rocm"]
}
group "individual-platforms" {
targets = ["cpu-amd64", "cpu-arm64", "gpu-amd64", "gpu-arm64", "rocm-amd64"]
}