mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-07 03:35:26 +03:00
27 lines
542 B
HCL
27 lines
542 B
HCL
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 = {
|
|
wheels = "target:wheels",
|
|
deps-rootfs = "target:deps-rootfs",
|
|
rootfs = "target:rootfs"
|
|
}
|
|
platforms = ["linux/arm64"]
|
|
} |