From 6d5c6e626472c6c68166a4dbef9e6eaa6dcf747b Mon Sep 17 00:00:00 2001 From: gongweibao Date: Mon, 15 Jun 2020 10:15:03 +0000 Subject: [PATCH] add segment test=develop --- tools/Dockerfile.devel | 4 ++-- tools/Dockerfile.gpu.devel | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/Dockerfile.devel b/tools/Dockerfile.devel index 415307d1..d83f0639 100644 --- a/tools/Dockerfile.devel +++ b/tools/Dockerfile.devel @@ -1,5 +1,5 @@ FROM centos:7.3.1611 -RUN yum -y install wget >/dev/null \ +RUN yum -y install wget \ && yum -y install gcc gcc-c++ make glibc-static which >/dev/null \ && yum -y install git openssl-devel curl-devel bzip2-devel python-devel @@ -16,7 +16,7 @@ RUN wget https://dl.google.com/go/go1.14.linux-amd64.tar.gz >/dev/null \ && 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 \ +RUN 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 \ && pip install google protobuf setuptools wheel flask >/dev/null \ diff --git a/tools/Dockerfile.gpu.devel b/tools/Dockerfile.gpu.devel index 76c57501..583b0566 100644 --- a/tools/Dockerfile.gpu.devel +++ b/tools/Dockerfile.gpu.devel @@ -1,6 +1,6 @@ FROM nvidia/cuda:9.0-cudnn7-devel-centos7 RUN yum -y install wget >/dev/null \ - && yum -y install gcc gcc-c++ make glibc-static which >/dev/null \ + && yum -y install gcc gcc-c++ make glibc-static which \ && yum -y install git openssl-devel curl-devel bzip2-devel python-devel RUN wget https://cmake.org/files/v3.2/cmake-3.2.0-Linux-x86_64.tar.gz >/dev/null \ @@ -16,7 +16,7 @@ RUN wget https://dl.google.com/go/go1.14.linux-amd64.tar.gz >/dev/null \ && 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 \ +RUN 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 \ && pip install google protobuf setuptools wheel flask >/dev/null \ -- GitLab