Page MenuHomec4science

build_singularity_images.sh
No OneTemporary

File Metadata

Created
Wed, Aug 28, 07:12

build_singularity_images.sh

#!/bin/bash
# loop over the YAML files
for YAMLFILE in *.yaml;
do
# run the image
echo "*****************************************"
echo "********** Building ${YAMLFILE} **********"
echo "*****************************************"
singularity-pipeline -p ${YAMLFILE} build
done;

Event Timeline