rapidsai / deployment

RAPIDS Deployment Documentation
https://docs.rapids.ai/deployment/stable/
9 stars 28 forks source link

Test RAPIDS containers work in NVIDIA AI Workbench #321

Closed jacobtomlinson closed 7 months ago

jacobtomlinson commented 7 months ago

I tested the rapidsai/notebooks:23.12-cuda12.0-py3.10 container in AI WKB and the container failed to build as the build needed root permissions.

Creating a new image that sets to user to root fixes the issue. The AI WKB team are going to look into this.

FROM rapidsai/notebooks:23.12-cuda12.0-py3.10

USER root

I also found that the files being mounted into the container from my machine had the UID of my user (which happened to be 1000) and the user in the container was set to 1001 so I could not write any files. The AI WKB team is going to look into this.

As the testing is complete I'm going to close this issue but given we can't write documentation in this state (or until after the GM release of AI WKB) I will open two new tasks to track the issues found for us to track for later.