Issues installing on Centos 7 Docker

I’m running a Centos 7.5 Docker image trying to install CUDA 9.2. (Because that is what is already installed on the machine)

I’ve downloaded the RPM file and followed the installation guide to install as follows (RPM file in tmp/):

RUN rpm -i /tmp/cuda-repo-rhel7-9.2.148-1.x86_64.rpm
RUN yum clean all
RUN yum -y install cuda

I’ve tried multiple different ways of installing the drivers but seem to hit a snag on the same packages with the same errors.

Failed:
nvidia-driver-latest-cuda.x86_64 3:450.36.06-1.el7
nvidia-persistenced-latest.x86_64 3:450.36.06-1.el7

Image of the package when it actually fails on the install:

Any help on how I can resolve issues with these packages would be much appreciated!

Andrew