From a866877c456e57618ae42d1fa41e11cee8c24561 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Mon, 2 Apr 2018 00:57:07 -0400 Subject: [PATCH] Drop the `r` channel The `r` channel has been considered part of `defaults` since `conda` version `4.3.0`. So it should already be taken into consideration by `conda` installs without having to explicitly add the channel. Further the `conda-forge` channel has incorporated an ever growing, healthy stack of R packages. As such it appears all of the R packages used in this stack now come from `conda-forge` and not `defaults`. Given all of this, it seems safe to drop the `r` channel from explicit addition to the channel list. --- datascience-notebook/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/datascience-notebook/Dockerfile b/datascience-notebook/Dockerfile index e6956dfa..927226c2 100644 --- a/datascience-notebook/Dockerfile +++ b/datascience-notebook/Dockerfile @@ -43,8 +43,7 @@ RUN mkdir /etc/julia && \ USER $NB_UID # R packages including IRKernel which gets installed globally. -RUN conda config --system --append channels r && \ - conda install --quiet --yes \ +RUN conda install --quiet --yes \ 'rpy2=2.8*' \ 'r-base=3.4.1' \ 'r-irkernel=0.8*' \