You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I launch the RAPIDS image using Singularity, I encounter the following error:
$ singularity run --nv sif/rapidsai.sif
FATAL: stat /home/rapids/entrypoint.sh: permission denied
I found that the current rapids directory and the conda directory in the image have been changed to 0770, causing the Singularity runtime user to be unable to access the contents of the directory.
Expected behavior
Please provide a Docker image that is friendly to Singularity. Thank you.
This command changes the permissions of the /opt/conda directory to 0770, instead of the default 0755.
When I launch the RAPIDS image using Singularity, I encounter the following error:
I found that the current rapids directory and the conda directory in the image have been changed to 0770, causing the Singularity runtime user to be unable to access the contents of the directory.
Expected behavior
Please provide a Docker image that is friendly to Singularity. Thank you.
This command changes the permissions of the /opt/conda directory to 0770, instead of the default 0755.
COPY --chown=root:conda --chmod=770 /opt/conda /opt/conda # buildkit
The text was updated successfully, but these errors were encountered: