mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 13:34:13 +03:00
24 lines
448 B
HCL
24 lines
448 B
HCL
target "docker-metadata-action" {}
|
|
|
|
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"
|
|
inherits = ["docker-metadata-action"]
|
|
contexts = {
|
|
deps = "target:deps",
|
|
rootfs = "target:rootfs"
|
|
}
|
|
platforms = ["linux/arm64"]
|
|
}
|