mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
35 lines
621 B
HCL
35 lines
621 B
HCL
variable "AMDGPU" {
|
|
default = "gfx900"
|
|
}
|
|
variable "ROCM" {
|
|
default = "5.7.3"
|
|
}
|
|
variable "HSA_OVERRIDE_GFX_VERSION" {
|
|
default = ""
|
|
}
|
|
target deps {
|
|
dockerfile = "docker/main/Dockerfile"
|
|
platforms = ["linux/amd64"]
|
|
target = "deps"
|
|
}
|
|
|
|
target rootfs {
|
|
dockerfile = "docker/main/Dockerfile"
|
|
platforms = ["linux/amd64"]
|
|
target = "rootfs"
|
|
}
|
|
|
|
target rocm {
|
|
dockerfile = "docker/rocm/Dockerfile"
|
|
contexts = {
|
|
deps = "target:deps",
|
|
rootfs = "target:rootfs"
|
|
}
|
|
platforms = ["linux/amd64"]
|
|
args = {
|
|
AMDGPU = AMDGPU,
|
|
ROCM = ROCM,
|
|
HSA_OVERRIDE_GFX_VERSION = HSA_OVERRIDE_GFX_VERSION
|
|
}
|
|
}
|