Building Singularity recipe from Nipype docker image CommandNotFound
问题 I have the following Singularity container recipe: #!/bin/bash Bootstrap: docker From: nipype/nipype:latest %labels Version v1.0 %post # Install nano apt-get update apt-get install nano # Set up Python environment CONDA_ENV=/opt/conda/bin export PATH=$CONDA_ENV:$PATH chmod -R 777 $CONDA_ENV # Activate conda environment conda activate neuro conda install seaborn pip install pybids and I build the container with Singularity as follows: sudo singularity build swish.simg Singularity.swish The