mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-13 21:12:57 +00:00
docker: Make conda
installs quieter.
This commit is contained in:
@@ -69,7 +69,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*' \
|
||||
@@ -79,7 +79,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*' \
|
||||
@@ -92,7 +92,7 @@ RUN conda create --yes -p $CONDA_DIR/envs/python2 python=2.7 \
|
||||
|
||||
# R packages
|
||||
RUN conda config --add channels r
|
||||
RUN conda install --yes \
|
||||
RUN conda install --quiet --yes \
|
||||
'r-base=3.2*' \
|
||||
'r-irkernel=0.5*' \
|
||||
'r-ggplot2=1.0*' \
|
||||
|
@@ -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*' \
|
||||
|
@@ -70,11 +70,11 @@ RUN cd /tmp && \
|
||||
echo "9ea57c0fdf481acf89d816184f969b04bc44dea27b258c4e86b1e3a25ff26aa0 *Miniconda3-3.19.0-Linux-x86_64.sh" | sha256sum -c - && \
|
||||
/bin/bash Miniconda3-3.19.0-Linux-x86_64.sh -f -b -p $CONDA_DIR && \
|
||||
rm Miniconda3-3.19.0-Linux-x86_64.sh && \
|
||||
$CONDA_DIR/bin/conda install --yes conda==3.19.1 && \
|
||||
$CONDA_DIR/bin/conda install --quiet --yes conda==3.19.1 && \
|
||||
conda clean -tipsy
|
||||
|
||||
# Install Jupyter notebook as jovyan
|
||||
RUN conda install --yes \
|
||||
RUN conda install --quiet --yes \
|
||||
'notebook=4.1*' \
|
||||
terminado \
|
||||
&& conda clean -tipsy
|
||||
|
@@ -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*' \
|
||||
|
@@ -17,7 +17,7 @@ USER jovyan
|
||||
|
||||
# R packages
|
||||
RUN conda config --add channels r
|
||||
RUN conda install --yes \
|
||||
RUN conda install --quiet --yes \
|
||||
'r-base=3.2*' \
|
||||
'r-irkernel=0.5*' \
|
||||
'r-plyr=1.8*' \
|
||||
|
@@ -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*' \
|
||||
@@ -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*' \
|
||||
|
Reference in New Issue
Block a user