frigate/docker/tensorrt/trt.hcl
2023-07-23 07:33:12 -06:00

42 lines
834 B
HCL

target deps {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/amd64"]
}
target rootfs {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/amd64"]
}
target wheels {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/amd64"]
}
target devcontainer {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/amd64"]
}
target tensorrt {
dockerfile = "docker/tensorrt/Dockerfile"
context = "."
contexts = {
deps = "target:deps",
rootfs = "target:rootfs"
wheels = "target:wheels"
}
platforms = ["linux/amd64"]
}
target devcontainer-trt {
dockerfile = "docker/tensorrt/Dockerfile"
context = "."
contexts = {
deps = "target:deps",
rootfs = "target:rootfs"
wheels = "target:wheels"
devcontainer = "target:devcontainer
}
platforms = ["linux/amd64"]
}