hey so I saw a similar post about building docker and not seeing the tegra libreries (/usr/lib/aarch64-linux-gnu/tegra/) while build that is related to runtime nvidia.
i’ve set the default runtime to be nvidia at :
cat /etc/docker/daemon.json
{
"default-runtime": "nvidia",
"runtimes": {
"nvidia": {
"args": [],
"path": "nvidia-container-runtime"
}
}
and you can see in :
docker info | grep -i runtime
Runtimes: io.containerd.runc.v2 nvidia runc
Default Runtime: nvidia
but still when trying to build a docker and ls to the tegra libreries I get :
=> ERROR [19/19] RUN /bin/bash -c "ls /usr/lib/aarch64-linux-gnu/tegra/" 0.6s
------
> [19/19] RUN /bin/bash -c "ls /usr/lib/aarch64-linux-gnu/tegra/":
0.574 ls: cannot access '/usr/lib/aarch64-linux-gnu/tegra/': No such file or directory
------
Dockerfile:167
--------------------
Any suggestions?