Commit bbc87ff6 authored by Prout, Ryan's avatar Prout, Ryan
Browse files

add conda

parent 0c2da26b
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
@@ -3,5 +3,15 @@ FROM registry.apps.marble.ccs.ornl.gov/stf007/python-36-centos7:latest
RUN pip install --upgrade pip
RUN pip install dask distributed
RUN pip install numpy
RUN pip install jupyterlab
#RUN pip install jupyterlab

RUN yum -y update \
    && yum -y install curl bzip2 \
    && curl -sSL https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -o /tmp/miniconda.sh \
    && bash /tmp/miniconda.sh -bfp /usr/local/ \
    && rm -rf /tmp/miniconda.sh \
    && conda install -y python=3 \
    && conda update conda \
    && conda clean --all --yes \
    && rpm -e --nodeps curl bzip2 \
    && yum clean all