├── .editorconfig ├── .gitignore ├── README.md ├── Singularity.template ├── conda-pack ├── Dockerfile ├── README.md ├── Singularity └── conda_to_singularity.sh └── conda_to_singularity.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grst/containerize-conda/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.sif 2 | *.tar.gz 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grst/containerize-conda/HEAD/README.md -------------------------------------------------------------------------------- /Singularity.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grst/containerize-conda/HEAD/Singularity.template -------------------------------------------------------------------------------- /conda-pack/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grst/containerize-conda/HEAD/conda-pack/Dockerfile -------------------------------------------------------------------------------- /conda-pack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grst/containerize-conda/HEAD/conda-pack/README.md -------------------------------------------------------------------------------- /conda-pack/Singularity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grst/containerize-conda/HEAD/conda-pack/Singularity -------------------------------------------------------------------------------- /conda-pack/conda_to_singularity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grst/containerize-conda/HEAD/conda-pack/conda_to_singularity.sh -------------------------------------------------------------------------------- /conda_to_singularity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grst/containerize-conda/HEAD/conda_to_singularity.py --------------------------------------------------------------------------------