github.com/hpcng/singularity@v3.1.1+incompatible/examples/debian/Singularity (about)

     1  BootStrap: debootstrap
     2  OSVersion: stable
     3  MirrorURL: http://ftp.us.debian.org/debian/
     4  
     5  %runscript
     6      echo "This is what happens when you run the container..."
     7  
     8  %post
     9      echo "Hello from inside the container"
    10      apt-get update
    11      apt-get -y install vim
    12      apt-get clean