mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
8573016bef
* Format makefiles * Handle all errors in rocm makefile * Remove CURRENT_UID and GID from makefile as they are unused * Removed unused vite.svg asset * Sort frigate-dictionary
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
|