docker: Make conda installs quieter.

This commit is contained in:
John Kirkham
2016-03-04 16:23:01 -05:00
parent 7c1169168c
commit a5cc245a7a
6 changed files with 13 additions and 13 deletions

View File

@@ -28,7 +28,7 @@ RUN apt-get update && \
USER jovyan
# Install Python 3 packages
RUN conda install --yes \
RUN conda install --quiet --yes \
'ipywidgets=4.1*' \
'pandas=0.17*' \
'matplotlib=1.5*' \
@@ -48,7 +48,7 @@ RUN conda install --yes \
&& conda clean -tipsy
# Install Python 2 packages
RUN conda create --yes -p $CONDA_DIR/envs/python2 python=2.7 \
RUN conda create --quiet --yes -p $CONDA_DIR/envs/python2 python=2.7 \
'ipython=4.1*' \
'ipywidgets=4.1*' \
'pandas=0.17*' \
@@ -71,7 +71,7 @@ RUN conda create --yes -p $CONDA_DIR/envs/python2 python=2.7 \
# R packages including IRKernel which gets installed globally.
RUN conda config --add channels r
RUN conda install --yes \
RUN conda install --quiet --yes \
'rpy2=2.7*' \
'r-base=3.2*' \
'r-irkernel=0.5*' \