mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-05 18:55:23 +03:00
25 lines
479 B
HCL
25 lines
479 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 "tensorrt" {
|
|
dockerfile = "docker/tensorrt/Dockerfile"
|
|
context = "."
|
|
contexts = {
|
|
deps = "target:deps",
|
|
rootfs = "target:rootfs"
|
|
wheels = "target:wheels"
|
|
}
|
|
platforms = ["linux/amd64"]
|
|
} |