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

     1  BootStrap: debootstrap
     2  OSVersion: trusty
     3  MirrorURL: http://us.archive.ubuntu.com/ubuntu/
     4  
     5  
     6  %runscript
     7      echo "This is what happens when you run the container..."
     8  
     9  
    10  %post
    11      echo "Hello from inside the container"
    12      sed -i 's/$/ universe/' /etc/apt/sources.list
    13      apt-get update
    14      apt-get -y install vim
    15      apt-get clean
    16