mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-16 14:32:57 +00:00
36 lines
801 B
Docker
36 lines
801 B
Docker
FROM jupyter/minimal-notebook
|
|
|
|
MAINTAINER Jupyter Project <jupyter@googlegroups.com>
|
|
|
|
# R pre-requisites
|
|
RUN apt-get install -y --no-install-recommends \
|
|
libxrender1 \
|
|
fonts-dejavu \
|
|
gfortran \
|
|
gcc && apt-get clean
|
|
|
|
USER jovyan
|
|
|
|
# R packages
|
|
RUN conda config --add channels r
|
|
RUN conda install --yes \
|
|
'r-base=3.1*' \
|
|
'r-irkernel=0.4*' \
|
|
'r-plyr=1.8*' \
|
|
'r-devtools=1.7*' \
|
|
'r-dplyr=0.4*' \
|
|
'r-ggplot2=1.0*' \
|
|
'r-tidyr=0.2*' \
|
|
'r-shiny=0.11*' \
|
|
'r-rmarkdown=0.5*' \
|
|
'r-forecast=5.8*' \
|
|
'r-stringr=0.6*' \
|
|
'r-rsqlite=1.0*' \
|
|
'r-reshape2=1.4*' \
|
|
'r-nycflights13=0.1*' \
|
|
'r-caret=6.0*' \
|
|
'r-rcurl=1.95*' \
|
|
'r-randomforest=4.6*' && conda clean -yt
|
|
|
|
# Switch back to root so that supervisord runs under that user
|
|
USER root |