Spaces:
Runtime error
Runtime error
File size: 1,702 Bytes
05b45a5 |
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 |
# 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"
]
}
# Default group to build both CPU and GPU versions
group "default" {
targets = ["cpu", "gpu"]
}
# 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"]
} |