Using distroless docker with CUDA

I’m trying to use distroless image for project with cuda.
I’m building a multi-stage dockerfile, when stage 1 have all needed for development, and stage 2 is based on distroless and copy from stage 1 only what needed for runtime.
When I run the image (based on stage 2) I get this error:
CUDA error: CUDA driver version is insufficient for CUDA runtime version
It is not happen if I run the image for stage 1.
It happens even if I copy all files from stage 1 to stage 2.
Any idea how to work with CUDA with docker image based on distroless?