Singularity 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # Copyright (c) 2021 NVIDIA Corporation. All rights reserved.
  2. Bootstrap: docker
  3. FROM: nvcr.io/nvidia/nvhpc:20.9-devel-ubuntu20.04
  4. %environment
  5. export XDG_RUNTIME_DIR=
  6. export PATH="$PATH:/usr/local/bin:/opt/anaconda3/bin:/usr/bin"
  7. export PATH=/opt/nvidia/nsight-systems/2020.5.1/bin:/opt/nvidia/nsight-compute/2020.2.1:$PATH
  8. export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib:/opt/nvidia/hpc_sdk/Linux_x86_64/20.9/cuda/11.0/lib64/"
  9. %post
  10. build_tmp=$(mktemp -d) && cd ${build_tmp}
  11. apt-get -y update
  12. apt-get -y dist-upgrade
  13. DEBIAN_FRONTEND=noninteractive apt-get -yq install --no-install-recommends \
  14. m4 vim-nox emacs-nox nano zip\
  15. python3-pip python3-setuptools git-core inotify-tools \
  16. curl git-lfs \
  17. build-essential
  18. rm -rf /var/lib/apt/cache/*
  19. pip3 install --upgrade pip
  20. pip3 install --no-cache-dir jupyter
  21. apt-get install --no-install-recommends -y build-essential
  22. # NVIDIA nsight-systems-2020.5.1 ,nsight-compute-2
  23. apt-get update -y
  24. DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends apt-transport-https ca-certificates gnupg wget
  25. apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys F60F4B3D7FA2AF80
  26. echo "deb https://developer.download.nvidia.com/devtools/repos/ubuntu2004/amd64/ /" >> /etc/apt/sources.list.d/nsight.list
  27. apt-get update -y
  28. DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends nsight-systems-2020.5.1 nsight-compute-2020.2.1
  29. apt-get install --no-install-recommends -y build-essential
  30. wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
  31. bash Miniconda3-latest-Linux-x86_64.sh -b -p /opt/anaconda3
  32. rm Miniconda3-latest-Linux-x86_64.sh
  33. cd /
  34. rm -rf ${build_tmp}
  35. %files
  36. nways_labs/ /labs
  37. %runscript
  38. "$@"
  39. %labels
  40. AUTHOR mozhgank