frigate/docker/tensorrt/bake.hcl
2023-07-23 07:33:11 -06:00

18 lines
347 B
HCL

target "deps" {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/amd64"]
}
target rootfs {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/amd64"]
}
target "tensorrt" {
dockerfile = "docker/tensorrt/Dockerfile"
contexts = {
deps = "target:deps",
rootfs = "target:rootfs"
}
platforms = ["linux/amd64"]
}