singularity

Creating a Apptainer image

Creating a Apptainer image 

NOTE, you need to be root to do this. Therefore you probably want to do this on your own machine.

Recipe for building a container

# Header
Bootstrap: docker        # container base from docker
From: ubuntu:18.04       # which version of the base image

Best-practice for reproducibility is not to use latest but to always specify which OS version to be pulled

Updated: 2024-03-21, 12:31