github.com/apptainer/singularity@v3.1.1+incompatible/examples/asciinema/Singularity (about)

     1  BootStrap: docker
     2  From: ubuntu:latest
     3  
     4  %post
     5      apt-get update
     6      apt-get -y install python3-pip locales
     7      pip3 install asciinema
     8      locale-gen en_US.UTF-8
     9  
    10  %environment
    11      LANG=en_US.UTF-8
    12      LANGUAGE=en_US:en
    13      LC_ALL=en_US.UTF-8
    14      export LANG LANGUAGE LC_ALL
    15  
    16  %runscript
    17      exec asciinema "$@"