frigate/docker/rpi/rpi.hcl
2024-05-13 15:16:46 -04:00

20 lines
416 B
HCL

target deps {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/arm64","linux/arm/v7"]
target = "deps"
}
target rootfs {
dockerfile = "docker/main/Dockerfile"
platforms = ["linux/arm64","linux/arm/v7"]
target = "rootfs"
}
target rpi {
dockerfile = "docker/rpi/Dockerfile"
contexts = {
deps = "target:deps",
rootfs = "target:rootfs"
}
platforms = ["linux/arm64","linux/arm/v7"]
}