mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 05:24:11 +03:00
20 lines
371 B
HCL
20 lines
371 B
HCL
|
|
target deps {
|
||
|
|
dockerfile = "docker/main/Dockerfile"
|
||
|
|
platforms = ["linux/arm64"]
|
||
|
|
target = "deps"
|
||
|
|
}
|
||
|
|
|
||
|
|
target rootfs {
|
||
|
|
dockerfile = "docker/main/Dockerfile"
|
||
|
|
platforms = ["linux/arm64"]
|
||
|
|
target = "rootfs"
|
||
|
|
}
|
||
|
|
|
||
|
|
target rpi {
|
||
|
|
dockerfile = "docker/rpi/Dockerfile"
|
||
|
|
contexts = {
|
||
|
|
deps = "target:deps",
|
||
|
|
rootfs = "target:rootfs"
|
||
|
|
}
|
||
|
|
platforms = ["linux/arm64"]
|
||
|
|
}
|