Sources missing on deepstream devel docker

Hi,
I can’t seem to find the Deepstream SDK sources on the devel docker.
See:
docker pull nvcr.io/nvidia/deepstream:4.0.2-19.12-devel

From:
https://docs.nvidia.com/metropolis/deepstream/dev-guide/index.html

I see it can be installed manually :"

  1. Navigate to the location to which the DeepStream package was downloaded and extract its contents:
    $ tar -xpvf deepstream_sdk_v4.0.2_x86_64.tbz2
  2. Extract and install DeepStream SDK:
    $ cd deepstream_sdk_v4.0.2_x86_64
    $ sudo tar -xvpf binaries.tbz2 -C /
    $ sudo ./install.sh
    $ sudo ldconfig
    "
    But i think this could lead to conflicts in the devel docker.

Thanks

Hi
Which sources do you need?
The sources is in the package deepstream_sdk_v4.0.2_x86_64.tbz2
deepstream_sdk_v4.0.2_x86_64/sources

check this place, /root/deestream_sdk_*/

Hi,
The Deepstream devel docker contains only libs and bins on /opt/nvidia/deepstream but does not contain the sources , specifically include files required for building Deepstream applications,
e.g. nvbufsurface.h.

I think it would be effective to place the corresponding sdk in the devel docker (devel docker goal as i understand is to enable Deepstream applications development).

Thanks

Did you check /root/deestream_sdk_*/? sources put in there.

Yes. Please check /root/deestream_sdk_*/ in your container.

Hi,
Had a mounted folder on docker /root that obscured the sdk folder, removed the docker mount , now i see it.

Thanks