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
we built the vGPU driver container with this repo some months ago and it worked fine when following the official vGPU driver container build documentation (Docs)
I pulled the latest repo this morning and build the container for a new driver version and it failed. I noticed two changes to the Dockerfile (Ubuntu 22.04, Dockerfile):
In line 1 and line 35: CUDA Versions are hardcoded to 12.6.3 and so the CUDA_VERSION build argument which is used in the documentation is not used in the Dockerfile. I think it should be possible to set the CUDA version as mentioned in the docs.
In line 4: The GOLANG_VERSION build arg is required otherwise the download in line 22 failes because the .tar.gz filename is wrong (empty variable). In previous versions the GOLANG_VERSION was hardcoded as environment variable in the Dockerfile. The docs do not mention that you need to set GOLANG_VERSION as build arg.
I would recommend to make the CUDA_VERSION a build arg parameter and adapt the documentation that the GOLANG_VERSION is now also required as a build arg (or hardcode it again in the Dockerfile).
Thank you for your work!
Regards,
Daniel
The text was updated successfully, but these errors were encountered:
Hi NVIDIA Team,
we built the vGPU driver container with this repo some months ago and it worked fine when following the official vGPU driver container build documentation (Docs)
I pulled the latest repo this morning and build the container for a new driver version and it failed. I noticed two changes to the Dockerfile (Ubuntu 22.04, Dockerfile):
CUDA_VERSION
build argument which is used in the documentation is not used in the Dockerfile. I think it should be possible to set the CUDA version as mentioned in the docs.GOLANG_VERSION
build arg is required otherwise the download in line 22 failes because the .tar.gz filename is wrong (empty variable). In previous versions theGOLANG_VERSION
was hardcoded as environment variable in the Dockerfile. The docs do not mention that you need to setGOLANG_VERSION
as build arg.I would recommend to make the
CUDA_VERSION
a build arg parameter and adapt the documentation that theGOLANG_VERSION
is now also required as a build arg (or hardcode it again in the Dockerfile).Thank you for your work!
Regards,
Daniel
The text was updated successfully, but these errors were encountered: