-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
58 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,2 @@ | ||
FROM centos:7.3.1611 | ||
FROM hub.baidubce.com/paddlepaddle/serving:latest-cuda10.2-cudnn8-devel | ||
|
||
RUN yum -y install wget >/dev/null \ | ||
&& yum -y install gcc gcc-c++ make glibc-static which >/dev/null \ | ||
&& yum -y install git openssl-devel curl-devel bzip2-devel python-devel >/dev/null \ | ||
&& 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 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 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 yum -y install python-devel sqlite-devel >/dev/null \ | ||
&& curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py >/dev/null \ | ||
&& python get-pip.py >/dev/null \ | ||
&& rm get-pip.py \ | ||
&& pip install requests | ||
|
||
RUN wget http://nixos.org/releases/patchelf/patchelf-0.10/patchelf-0.10.tar.bz2 \ | ||
&& yum -y install bzip2 >/dev/null \ | ||
&& tar -jxf patchelf-0.10.tar.bz2 \ | ||
&& cd patchelf-0.10 \ | ||
&& ./configure --prefix=/usr \ | ||
&& make >/dev/null && make install >/dev/null \ | ||
&& cd .. \ | ||
&& rm -rf patchelf-0.10* | ||
|
||
RUN yum install -y python3 python3-devel \ | ||
&& pip3 install requests | ||
|
||
RUN 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 yum -y update >/dev/null \ | ||
&& yum -y install dnf >/dev/null \ | ||
&& yum -y install dnf-plugins-core >/dev/null \ | ||
&& dnf copr enable alonid/llvm-3.8.0 -y \ | ||
&& dnf install llvm-3.8.0 clang-3.8.0 compiler-rt-3.8.0 -y \ | ||
&& echo 'export PATH=/opt/llvm-3.8.0/bin:$PATH' >> /root/.bashrc | ||
|
||
RUN yum install -y java \ | ||
&& wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo \ | ||
&& yum install -y apache-maven | ||
|
||
RUN yum install -y lsof |