From 4262e5562813f8264f885808dc166975fe351e5c Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Fri, 4 Mar 2016 12:20:51 -0500 Subject: [PATCH] all-spark-notebook/Dockerfile: Clean out `conda`. --- all-spark-notebook/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/all-spark-notebook/Dockerfile b/all-spark-notebook/Dockerfile index b6b7fc78..504bd5eb 100644 --- a/all-spark-notebook/Dockerfile +++ b/all-spark-notebook/Dockerfile @@ -72,7 +72,7 @@ RUN conda install --yes \ 'scipy=0.17*' \ 'seaborn=0.7*' \ 'scikit-learn=0.17*' \ - && conda clean -yt + && conda clean -tipsy # Install Python 2 packages and kernel spec RUN conda create --yes -p $CONDA_DIR/envs/python2 python=2.7 \ @@ -84,7 +84,7 @@ RUN conda create --yes -p $CONDA_DIR/envs/python2 python=2.7 \ 'seaborn=0.7*' \ 'scikit-learn=0.17*' \ pyzmq \ - && conda clean -yt + && conda clean -tipsy # R packages RUN conda config --add channels r @@ -92,7 +92,7 @@ RUN conda install --yes \ 'r-base=3.2*' \ 'r-irkernel=0.5*' \ 'r-ggplot2=1.0*' \ - 'r-rcurl=1.95*' && conda clean -yt + 'r-rcurl=1.95*' && conda clean -tipsy # Scala Spark kernel spec RUN mkdir -p /opt/conda/share/jupyter/kernels/scala