mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-14 23:25:25 +03:00
15 lines
439 B
Makefile
15 lines
439 B
Makefile
BOARDS += h8l
|
|
|
|
local-h8l: version
|
|
docker buildx bake --file=docker/hailo8l/h8l.hcl h8l \
|
|
--set h8l.tags=frigate:latest-h8l \
|
|
--load
|
|
|
|
build-h8l: version
|
|
docker buildx bake --file=docker/hailo8l/h8l.hcl h8l \
|
|
--set h8l.tags=$(IMAGE_REPO):${GITHUB_REF_NAME}-$(COMMIT_HASH)-h8l
|
|
|
|
push-h8l: build-h8l
|
|
docker buildx bake --file=docker/hailo8l/h8l.hcl h8l \
|
|
--set h8l.tags=$(IMAGE_REPO):${GITHUB_REF_NAME}-$(COMMIT_HASH)-h8l \
|
|
--push
|