Skip to content

Commit

Permalink
scipy-notebook/Dockerfile: Make conda installs quieter.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Mar 5, 2016
1 parent 5832df4 commit 9a6df27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scipy-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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*' \
Expand All @@ -34,7 +34,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*' \
Expand Down

0 comments on commit 9a6df27

Please sign in to comment.