从 Dockerfile 构建时图像的 rootfs 不完整

Image's rootfs is incomplete while building from Dockerfile

我正在从 Dokerfile 为 Jetson 构建图像。以下是摘录:

FROM nvcr.io/nvidia/l4t-pytorch:r32.4.4-pth1.6-py3

# some installation
RUN ls -l /usr/local/cuda-10.2/targets/aarch64-linux/lib/
# more installation

ls命令returns只是几个文件。但是,当我 运行 生成的容器并使用其 shell 时,此目录包含更多文件。

问题是我需要该文件夹中的一些库来安装一些东西。我希望能够从 Dockerfile 安装它,但只能从容器的 shell.

为什么目录不完整,有没有办法强制构建它以便在我需要时准备好?

谢谢。

通过将 "default-runtime": "nvidia" 添加到 /etc/docker/daemon.json 来解决它。此处有更多详细信息:https://github.com/dusty-nv/jetson-containers#docker-default-runtime