Skip to content

Files

Latest commit

874410c · Mar 11, 2025

History

History

edge_orchestrator

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 11, 2025
Feb 26, 2025
Feb 26, 2025
Mar 11, 2025
Mar 6, 2025
Feb 26, 2025
Jul 21, 2023
Feb 26, 2025
Mar 5, 2025
Jan 27, 2023
Mar 7, 2025
Feb 26, 2025
Feb 26, 2025
Feb 26, 2025
Feb 26, 2025

edge_orchestrator

The edge_orchestrator orchestrates the following steps as soon as it is triggered:

  1. image capture
  2. image backup
  3. metadata backup
  4. model inference on images
  5. saving results

Building the Docker image

Depending on the target platform that will run the Docker container, we need to condition the Dockerfile accordingly.

Therefor, we use the TARGETPLATFORM variable that is the value set with --platform flag on build:

docker build --platform linux/arm64 .

Do not get confused with the BUILDPLATFORM variable, that matches the current machine. (e.g. linux/amd64 or MacOs).

Visit: