Dockerfile.cuda10.1-cudnn7-trt6.devel 2.9 KB
Newer Older
M
MRXLT 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
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 \
M
MRXLT 已提交
60
    && echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/TensorRT-6.0.1.5/lib/' >> /root/.bashrc