Tensort 5.0 cannot be installed to Cuda 10 Docker container on a CUDA 10.1 host

Host is running Cuda 10.1.

FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu18.04 

ARG TENSORRT=nv-tensorrt-repo-ubuntu1804-cuda10.0-trt5.0.2.6-ga-20181009_1-1_amd64.deb
# From Tensort installation instructions
ARG TENSORRT_KEY=/var/nv-tensorrt-repo-cuda10.0-trt5.0.2.6-ga-20181009/7fa2af80.pub

# custom Tensorrt Installation
ADD $TENSORRT /tmp
RUN 	dpkg -i /tmp/$TENSORRT && \ 
	apt-key add $TENSORRT_KEY && \
	apt-get update && apt-get install -y \
	tensorrt

This fails with:

The following packages have unmet dependencies:
 tensorrt : Depends: libnvinfer5 (= 5.0.2-1+cuda10.0) but 5.1.2-1+cuda10.1 is to be installed
            Depends: libnvinfer-dev (= 5.0.2-1+cuda10.0) but 5.1.2-1+cuda10.1 is to be installed
            Depends: libnvinfer-samples (= 5.0.2-1+cuda10.0) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.