docker build error - base image no longer exists
Base image nvidia/cuda:10.2-base no longer exists on dockerhub so it is impossible to build the mutmnt image.
(When modifying dockerfile with a more recent image like 12.2.0-base-ubuntu20.04 the build process still fails somewhere in the install scripts, so more changes are needed.)
Hi, I've been trying to set it up with a more recent cuda image, but it turns out in a very long loop of broken dependencies and dependencies that need updates. It might take quite some time to get it working. In the mean time, a possible workaround would be to use the 10.2-base image. I had one in our machines so you can download it from here. Then, you just need to load it in your docker like this: docker load <cuda-10.2-base.img.tar.
Hi, I've been trying to set it up with a more recent cuda image, but it turns out in a very long loop of broken dependencies and dependencies that need updates. It might take quite some time to get it working. In the mean time, a possible workaround would be to use the 10.2-base image. I had one in our machines so you can download it from here. Then, you just need to load it in your docker like this:
docker load <cuda-10.2-base.img.tar.
Many thanks!