Commit af11fbc3 authored by John Kirkham's avatar John Kirkham

docker: Add and install from the r channel with conda.

parent 457c3edf
......@@ -76,8 +76,8 @@ RUN conda create --quiet --yes -p $CONDA_DIR/envs/python2 python=2.7 \
&& conda clean -tipsy
# R packages
RUN conda config --add channels r
RUN conda install --quiet --yes \
RUN conda config --add channels r && \
conda install --quiet --yes \
'r-base=3.2*' \
'r-irkernel=0.5*' \
'r-ggplot2=1.0*' \
......
......@@ -73,8 +73,8 @@ RUN conda create --quiet --yes -p $CONDA_DIR/envs/python2 python=2.7 \
&& conda clean -tipsy
# R packages including IRKernel which gets installed globally.
RUN conda config --add channels r
RUN conda install --quiet --yes \
RUN conda config --add channels r && \
conda install --quiet --yes \
'rpy2=2.7*' \
'r-base=3.2*' \
'r-irkernel=0.5*' \
......
......@@ -17,8 +17,8 @@ RUN apt-get update && \
USER jovyan
# R packages
RUN conda config --add channels r
RUN conda install --quiet --yes \
RUN conda config --add channels r && \
conda install --quiet --yes \
'r-base=3.2*' \
'r-irkernel=0.5*' \
'r-plyr=1.8*' \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment