-
-
Notifications
You must be signed in to change notification settings - Fork 813
Expand file tree
/
Copy pathdocker-bake.hcl
More file actions
232 lines (204 loc) · 6.7 KB
/
docker-bake.hcl
File metadata and controls
232 lines (204 loc) · 6.7 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
# 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"
}
# Source-control revision + build timestamp, populated from CI env.
# Left blank for local builds so the resulting labels/annotations stay empty
# rather than carrying stale values.
variable "REVISION" {
default = ""
}
variable "CREATED" {
default = ""
}
# OCI metadata applied to every image. `labels` lands in the image config
# (visible via `docker inspect`); `annotations` lands on the pushed manifest
# (which is what GHCR reads for per-arch package pages). Index-level
# annotations for the multi-arch tag are added in release.yml at
# `imagetools create` time, since bake here only produces per-arch manifests.
target "_common" {
context = "."
args = {
DEBIAN_FRONTEND = "noninteractive"
DOWNLOAD_MODEL = "${DOWNLOAD_MODEL}"
}
labels = {
"org.opencontainers.image.source" = "https://github.com/${OWNER}/Kokoro-FastAPI"
"org.opencontainers.image.url" = "https://github.com/${OWNER}/Kokoro-FastAPI"
"org.opencontainers.image.licenses" = "Apache-2.0"
"org.opencontainers.image.revision" = "${REVISION}"
"org.opencontainers.image.version" = "${VERSION}"
"org.opencontainers.image.created" = "${CREATED}"
}
annotations = [
"org.opencontainers.image.source=https://github.com/${OWNER}/Kokoro-FastAPI",
"org.opencontainers.image.url=https://github.com/${OWNER}/Kokoro-FastAPI",
"org.opencontainers.image.licenses=Apache-2.0",
"org.opencontainers.image.revision=${REVISION}",
"org.opencontainers.image.version=${VERSION}",
"org.opencontainers.image.created=${CREATED}",
]
}
# Base settings for CPU builds
target "_cpu_base" {
inherits = ["_common"]
dockerfile = "docker/cpu/Dockerfile.optimized"
labels = {
"org.opencontainers.image.title" = "Kokoro-FastAPI (CPU)"
"org.opencontainers.image.description" = "Kokoro TTS served via FastAPI. CPU build."
}
annotations = [
"org.opencontainers.image.title=Kokoro-FastAPI (CPU)",
"org.opencontainers.image.description=Kokoro TTS served via FastAPI. CPU build.",
]
}
# Base settings for GPU builds
target "_gpu_base" {
inherits = ["_common"]
dockerfile = "docker/gpu/Dockerfile.optimized"
labels = {
"org.opencontainers.image.title" = "Kokoro-FastAPI (GPU)"
"org.opencontainers.image.description" = "Kokoro TTS served via FastAPI. NVIDIA GPU build (CUDA 12.6 amd64 / CUDA 12.9 arm64; cu128 tag for Blackwell)."
}
annotations = [
"org.opencontainers.image.title=Kokoro-FastAPI (GPU)",
"org.opencontainers.image.description=Kokoro TTS served via FastAPI. NVIDIA GPU build (CUDA 12.6 amd64 / CUDA 12.9 arm64; cu128 tag for Blackwell).",
]
}
# CPU target with multi-platform support
target "cpu" {
inherits = ["_cpu_base"]
platforms = ["linux/amd64", "linux/arm64"]
tags = [
"${REGISTRY}/${OWNER}/${REPO}-cpu:${VERSION}"
]
}
# GPU multi-platform: dispatches to per-arch targets so each gets its own CUDA_VERSION
group "gpu" {
targets = ["gpu-amd64", "gpu-arm64"]
}
# Base settings for AMD ROCm builds
target "_rocm_base" {
inherits = ["_common"]
dockerfile = "docker/rocm/Dockerfile"
labels = {
"org.opencontainers.image.title" = "Kokoro-FastAPI (ROCm)"
"org.opencontainers.image.description" = "Kokoro TTS served via FastAPI. AMD ROCm build (amd64 only)."
}
annotations = [
"org.opencontainers.image.title=Kokoro-FastAPI (ROCm)",
"org.opencontainers.image.description=Kokoro TTS served via FastAPI. AMD ROCm build (amd64 only).",
]
}
# Individual platform targets for debugging/testing
target "cpu-amd64" {
inherits = ["_cpu_base"]
platforms = ["linux/amd64"]
tags = [
"${REGISTRY}/${OWNER}/${REPO}-cpu:${VERSION}-amd64"
]
}
target "cpu-arm64" {
inherits = ["_cpu_base"]
platforms = ["linux/arm64"]
tags = [
"${REGISTRY}/${OWNER}/${REPO}-cpu:${VERSION}-arm64"
]
}
target "gpu-amd64" {
inherits = ["_gpu_base"]
platforms = ["linux/amd64"]
args = {
CUDA_VERSION = "12.6.3"
}
# Per-arch tag carries the wheel variant so it parallels gpu-cu128-amd64.
# The published manifest still resolves to :VERSION / :VERSION-cu126 via release.yml.
tags = [
"${REGISTRY}/${OWNER}/${REPO}-gpu:${VERSION}-cu126-amd64"
]
}
target "gpu-arm64" {
inherits = ["_gpu_base"]
platforms = ["linux/arm64"]
args = {
CUDA_VERSION = "12.9.1"
}
# aarch64 uses cu129 wheels (no cu126 aarch64 wheels exist on pytorch.org).
tags = [
"${REGISTRY}/${OWNER}/${REPO}-gpu:${VERSION}-cu129-arm64"
]
}
# Blackwell / RTX 50-series variant: cu128 torch wheels (sm_120 kernels).
# x86_64 only; published as a -cu128 suffixed tag on the existing -gpu package.
target "gpu-cu128-amd64" {
inherits = ["_gpu_base"]
platforms = ["linux/amd64"]
args = {
# 12.8.x is the first CUDA toolkit with Blackwell (sm_120) support and is
# what the cu128 torch wheels are built against. Keep base + wheel aligned.
CUDA_VERSION = "12.8.1"
GPU_EXTRA = "gpu-cu128"
}
tags = [
"${REGISTRY}/${OWNER}/${REPO}-gpu:${VERSION}-cu128-amd64"
]
}
# AMD ROCm only supports x86
target "rocm-amd64" {
inherits = ["_rocm_base"]
platforms = ["linux/amd64"]
tags = [
"${REGISTRY}/${OWNER}/${REPO}-rocm:${VERSION}-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"]
}
target "gpu-cu128-dev" {
inherits = ["_gpu_base"]
# No multi-platform for dev builds
args = {
CUDA_VERSION = "12.8.1"
GPU_EXTRA = "gpu-cu128"
}
tags = ["${REGISTRY}/${OWNER}/${REPO}-gpu:dev-cu128"]
}
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-amd64", "gpu-arm64", "gpu-cu128-amd64"]
}
group "rocm-all" {
targets = ["rocm-amd64"]
}
group "all" {
targets = ["cpu", "gpu-amd64", "gpu-arm64", "gpu-cu128-amd64", "rocm-amd64"]
}
group "individual-platforms" {
targets = ["cpu-amd64", "cpu-arm64", "gpu-amd64", "gpu-arm64", "gpu-cu128-amd64", "rocm-amd64"]
}