mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-05 18:55:23 +03:00
18 lines
337 B
HCL
18 lines
337 B
HCL
target "deps" {
|
|
dockerfile = "docker/main/Dockerfile"
|
|
platforms = ["linux/arm64"]
|
|
}
|
|
|
|
target rootfs {
|
|
dockerfile = "docker/main/Dockerfile"
|
|
platforms = ["linux/arm64"]
|
|
}
|
|
|
|
target "rpi" {
|
|
dockerfile = "docker/rpi/Dockerfile"
|
|
contexts = {
|
|
deps = "target:deps",
|
|
rootfs = "target:rootfs"
|
|
}
|
|
platforms = ["linux/arm64"]
|
|
} |