Hi @atlay, the l4t-ml container from jetson-containers automatically starts Jupyter server. It also has Pandas pre-installed.
It has not, but I don’t believe you need the Dockerfile of a base image to use it to build a new container.
Add these lines to your own Dockerfile:
ARG BASE_IMAGE=nvcr.io/nvidia/dli/dli-nano-ai:v2.0.1-r32.4.4
FROM ${BASE_IMAGE}
and then proceed to install the packages you want later in your Dockerfile. This will base your new container off of the DLI container, and then you can add your extra stuff to it.