Hi,
I am working with DRIVE ORIN, with DriveOS Version 6.0.8.1.
I am trying to build a docker image, however run into:
`ERROR: failed to solve: process “/bin/sh -c apt-get update” did not complete successfully: failed to create endpoint n56fp4yfdhyz56470812jbw5x on network bridge: failed to add the host (vethaecfa82) <=> sandbox (veth7c38035) pair interfaces: operation not supported
`
Dockerfile (works):
FROM nvidia/cuda:11.8.0-runtime-ubuntu20.04 AS base
CMD ["bash"]
Dockerfile (does not work; run into above error):
FROM nvidia/cuda:11.8.0-runtime-ubuntu20.04 AS base
RUN apt-get update
CMD ["bash"]
To build:
docker build -t simple_docker .
I have followed [BUG] failed to start docker container in orin target with error: failed to create endpoint on network bridge, operation not supported and rebuilt the kernel, so i have able to run the docker and access the GPU:
what is the way to build docker container on/for DRIVE ORIN?

