FROM centos:5 ENV MINICONDA_URL https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh ENV MINICONDA_ROOT /root/miniconda3 RUN yum -y update RUN yum -y install gcc \ patch \ csh \ flex \ wget \ perl \ bzip2 \ libgfortran44.x86_64 \ make \ m4 \ unzip \ which RUN wget $MINICONDA_URL -O miniconda.sh; RUN bash miniconda.sh -b RUN $MINICONDA_ROOT/bin/conda update --yes --all RUN $MINICONDA_ROOT/bin/conda install --yes conda-build anaconda-client RUN $MINICONDA_ROOT/bin/conda info RUN $MINICONDA_ROOT/bin/conda install --yes cython numpy nomkl zlib bzip2 libnetcdf libgfortran openblas gcc RUN $MINICONDA_ROOT/bin/pip install auditwheel