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

@@ -42,7 +42,7 @@ ENV MESOS_NATIVE_LIBRARY /usr/local/lib/libmesos.so
USER jovyan
# Install Python 3 packages
RUN conda install --yes \
RUN conda install --quiet --yes \
'ipywidgets=4.1*' \
'pandas=0.17*' \
'matplotlib=1.5*' \
@@ -52,7 +52,7 @@ RUN conda install --yes \
&& conda clean -tipsy
# Install Python 2 packages and kernel spec
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*' \