frigate/docker/rockchip/rk.hcl
2023-10-30 19:19:18 +00:00

34 lines
673 B
HCL

target wget {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/arm64"]
target = "wget"
}
target wheels {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/arm64"]
target = "wheels"
}
target deps-rootfs {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/arm64"]
target = "deps-rootfs"
}
target rootfs {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/arm64"]
target = "rootfs"
}
target rk {
dockerfile = "docker/rockchip/Dockerfile"
contexts = {
wget = "target:wget",
wheels = "target:wheels",
deps-rootfs = "target:deps-rootfs",
rootfs = "target:rootfs"
}
platforms = ["linux/arm64"]
}