Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ RUN apt-get update && apt-get -yqq dist-upgrade && \
texlive-latex-base \
texlive-latex-extra \
unzip \
zsh \
vim \
&& \
# Setup locales
Expand Down Expand Up @@ -143,16 +144,14 @@ USER $NB_USER

RUN echo "Install R and R basic packages" && \
conda config --add channels conda-forge && \
conda install -y \
conda install -c r -y \
'r-essentials=3.5.1' && \
conda config --add channels ataenzer && \
conda config --add channels jsignell && \
conda config --add channels pjones && \
conda config --add channels omgarcia && \
conda config --add channels cgat && \
conda config --add channels sebp && \
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/ && \
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ && \
conda install -y \
'r-tm' \
'r-rcolorbrewer' \
Expand All @@ -175,8 +174,7 @@ RUN echo "Install R and R basic packages" && \
install.packages('wordcloud'); \
install.packages('wordcloud2'); \
install.packages('xgboost'); \
install.packages('plotly');" && \
echo 'options("repos" = c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/"))' > ~/.Rprofile && \
install.packages('plotly');" \
conda clean -tipsy

# Add Julia packages. Only add HDF5 if this is not a test-only build since
Expand Down