FROM centos:centos7.6.1810 MAINTAINER sw0826.kim@snowcorp.com ENV NVIDIA_DRIVER=410.79 RUN yum update -y RUN yum install -y mesa-utils wget module-init-tools RUN wget -O NVIDIA-Linux-x86_64-${NVIDIA_DRIVER}.run --no-check-certificate http://us.download.nvidia.com/tesla/${NVIDIA_DRIVER}/NVIDIA-Linux-x86_64-${NVIDIA_DRIVER}.run RUN chmod +x NVIDIA-Linux-x86_64-${NVIDIA_DRIVER}.run RUN sh ./NVIDIA-Linux-x86_64-${NVIDIA_DRIVER}.run --no-questions --accept-license --no-precompiled-interface --ui=none --glvnd-egl-config-path=/usr/share/glvnd/egl_vendor.d -a -N --no-kernel-module RUN rm NVIDIA-Linux-x86_64-${NVIDIA_DRIVER}.run RUN yum install -y glxinfo