frigate/docker/tensorrt/trt.hcl

25 lines
479 B
HCL
Raw Normal View History

2023-07-18 00:19:13 +03:00
target deps {
2023-07-17 23:03:41 +03:00
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/amd64"]
}
target rootfs {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/amd64"]
}
2023-07-18 00:19:13 +03:00
target wheels {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/amd64"]
}
2023-07-17 23:03:41 +03:00
target "tensorrt" {
dockerfile = "docker/tensorrt/Dockerfile"
2023-07-18 00:19:13 +03:00
context = "."
2023-07-17 23:03:41 +03:00
contexts = {
deps = "target:deps",
rootfs = "target:rootfs"
2023-07-18 00:19:13 +03:00
wheels = "target:wheels"
2023-07-17 23:03:41 +03:00
}
platforms = ["linux/amd64"]
}