Dockerfile 288 字节
Newer Older
1
FROM centos:7.3.1611
M
MRXLT 已提交
2

3 4 5 6 7 8
RUN yum -y install wget && \
    yum -y install epel-release && yum -y install patchelf && \
    yum -y install gcc make python-devel && \
    yum clean all && \
    curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
    python get-pip.py && rm get-pip.py