frigate/docker/rockchip/rk.hcl

31 lines
591 B
HCL
Raw Normal View History

2025-09-06 07:43:44 +03:00
target "docker-metadata-action" {}
target wheels {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/arm64"]
target = "wheels"
}
target deps {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/arm64"]
target = "deps"
}
target rootfs {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/arm64"]
target = "rootfs"
}
target rk {
dockerfile = "docker/rockchip/Dockerfile"
2025-09-06 07:43:44 +03:00
inherits = ["docker-metadata-action"]
contexts = {
wheels = "target:wheels",
deps = "target:deps",
rootfs = "target:rootfs"
}
platforms = ["linux/arm64"]
2025-09-06 07:43:44 +03:00
}