Bootstrap: docker From: debian:bookworm-slim %labels Author ATGC Tool MrBayes %help Build an Apptainer image for MrBayes using the Debian package. %files mrbayes/container_entrypoint.bash /usr/local/bin/mrbayes-entrypoint mrbayes/prepare_nexus.py /opt/atgc/prepare_nexus.py %post set -eu export DEBIAN_FRONTEND=noninteractive apt-get update apt-get install -y --no-install-recommends \ bash \ ca-certificates \ mrbayes \ python3 apt-get clean rm -rf /var/lib/apt/lists/* chmod 0755 /usr/local/bin/mrbayes-entrypoint chmod 0644 /opt/atgc/prepare_nexus.py %runscript exec /usr/local/bin/mrbayes-entrypoint "$@"