diff --git a/tools/Dockerfile.cuda10.1-cudnn7-trt6.devel b/tools/Dockerfile.cuda10.1-cudnn7-trt6.devel new file mode 100644 index 0000000000000000000000000000000000000000..c6e1c1e050505e631493efe21732a98abd1bd52e --- /dev/null +++ b/tools/Dockerfile.cuda10.1-cudnn7-trt6.devel @@ -0,0 +1,60 @@ +FROM nvidia/cuda:10.1-cudnn7-devel-centos7 + +RUN export http_proxy="http://172.19.56.199:3128" \ + && export https_proxy="http://172.19.56.199:3128" \ + && yum -y install wget >/dev/null \ + && yum -y install gcc gcc-c++ make glibc-static which \ + && yum -y install git openssl-devel curl-devel bzip2-devel python-devel \ + && yum -y install libSM-1.2.2-2.el7.x86_64 --setopt=protected_multilib=false \ + && yum -y install libXrender-0.9.10-1.el7.x86_64 --setopt=protected_multilib=false \ + && yum -y install libXext-1.3.3-3.el7.x86_64 --setopt=protected_multilib=false + +RUN export http_proxy="http://172.19.56.199:3128" \ + && export https_proxy="http://172.19.56.199:3128" && \ + wget https://github.com/protocolbuffers/protobuf/releases/download/v3.11.2/protobuf-all-3.11.2.tar.gz && \ + tar zxf protobuf-all-3.11.2.tar.gz && \ + cd protobuf-3.11.2 && \ + ./configure && make -j4 && make install && \ + make clean && \ + cd .. && rm -rf protobuf-* + +RUN export http_proxy="http://172.19.56.199:3128" \ + && export https_proxy="http://172.19.56.199:3128" && \ + wget https://cmake.org/files/v3.2/cmake-3.2.0-Linux-x86_64.tar.gz >/dev/null \ + && tar xzf cmake-3.2.0-Linux-x86_64.tar.gz \ + && mv cmake-3.2.0-Linux-x86_64 /usr/local/cmake3.2.0 \ + && echo 'export PATH=/usr/local/cmake3.2.0/bin:$PATH' >> /root/.bashrc \ + && rm cmake-3.2.0-Linux-x86_64.tar.gz + + +RUN export http_proxy="http://172.19.56.199:3128" \ + && export https_proxy="http://172.19.56.199:3128" && \ + wget https://dl.google.com/go/go1.14.linux-amd64.tar.gz >/dev/null \ + && tar xzf go1.14.linux-amd64.tar.gz \ + && mv go /usr/local/go \ + && echo 'export GOROOT=/usr/local/go' >> /root/.bashrc \ + && echo 'export PATH=/usr/local/go/bin:$PATH' >> /root/.bashrc \ + && rm go1.14.linux-amd64.tar.gz + +RUN export http_proxy="http://172.19.56.199:3128" \ + && export https_proxy="http://172.19.56.199:3128" && \ + yum -y install python-devel sqlite-devel \ + && curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py >/dev/null \ + && python get-pip.py >/dev/null \ + && rm get-pip.py + +RUN export http_proxy="http://172.19.56.199:3128" \ + && export https_proxy="http://172.19.56.199:3128" && \ + yum install -y python3 python3-devel \ + && yum -y install epel-release && yum -y install patchelf libXext libSM libXrender\ + && yum clean all + +RUN localedef -c -i en_US -f UTF-8 en_US.UTF-8 \ + && echo "export LANG=en_US.utf8" >> /root/.bashrc \ + && echo "export LANGUAGE=en_US.utf8" >> /root/.bashrc + +RUN wget https://paddle-serving.bj.bcebos.com/tools/TensorRT-6.0.1.5.CentOS-7.6.x86_64-gnu.cuda-10.1.cudnn7.6.tar.gz \ + && tar -xzf TensorRT-6.0.1.5.CentOS-7.6.x86_64-gnu.cuda-10.1.cudnn7.6.tar.gz \ + && mv TensorRT-6.0.1.5 /usr/local/ \ + && rm TensorRT-6.0.1.5.CentOS-7.6.x86_64-gnu.cuda-10.1.cudnn7.6.tar.gz \ + && echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/TensorRT-6.0.1.5/lib/' >> /root/.bashrc