This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM nvidia/cuda:10.2-cudnn7-devel-centos7 | |
RUN yum update -y | |
RUN yum install -y git sudo wget which make cmake | |
RUN yum install -y centos-release-scl | |
RUN yum install -y devtoolset-8-gcc devtoolset-8-gcc-c++ | |
RUN yum install -y epel-release | |
RUN yum install -y zeromq-devel | |
RUN useradd -ms /bin/bash -G wheel myuser | |
RUN echo "myuser ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers |