Reputation: 469
Our current Docker definition of production environment starts like this
ARG CUDA="10.0"
ARG CUDNN="7"
FROM nvidia/cuda:${CUDA}-cudnn${CUDNN}-devel-ubuntu18.04
I need to update the environment to use CUDA 11.7 and I tried to update the definition above to have
ARG CUDA="11.7"
ARG CUDNN="8"
But I get the error:
manifest for nvidia/cuda:11.7-cudnn8-devel-ubuntu18.04 not found: manifest unknown: manifest unknown
Any suggestions on how to build a Docker image with CUDA 11.7?
Upvotes: 1
Views: 3040