frigate/docker/rockchip/rk.hcl

34 lines
645 B
HCL
Raw Normal View History

2023-10-30 22:10:03 +03:00
target wget {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/arm64"]
target = "wget"
}
2023-10-30 00:41:27 +03:00
target wheels {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/arm64"]
target = "wheels"
}
2023-10-31 20:49:53 +03:00
target deps {
2023-10-30 00:41:27 +03:00
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/arm64"]
2023-10-31 20:49:53 +03:00
target = "deps"
}
target rootfs {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/arm64"]
target = "rootfs"
2023-10-30 00:41:27 +03:00
}
target rk {
dockerfile = "docker/rockchip/Dockerfile"
contexts = {
2023-10-30 22:10:03 +03:00
wget = "target:wget",
2023-10-30 00:41:27 +03:00
wheels = "target:wheels",
2023-10-31 20:49:53 +03:00
deps = "target:deps",
rootfs = "target:rootfs"
2023-10-30 00:41:27 +03:00
}
platforms = ["linux/arm64"]
}