mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-12 20:42:57 +00:00

* Always remain as root during install * Put kernel specs in system path, not user home * Create user work directory at startup * Note this is in 4.0 and up images, not 3.2 Contribution (c) Copyright IBM Corp. 2015
86 lines
2.0 KiB
Docker
86 lines
2.0 KiB
Docker
FROM jupyter/minimal-notebook
|
|
|
|
MAINTAINER Jupyter Project <jupyter@googlegroups.com>
|
|
|
|
# R pre-requisites
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
libxrender1 \
|
|
fonts-dejavu \
|
|
gfortran \
|
|
gcc && apt-get clean
|
|
|
|
# Julia dependencies
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
julia \
|
|
libnettle4 && apt-get clean
|
|
|
|
# Install Python 3 packages
|
|
RUN conda install --yes \
|
|
'ipywidgets=4.0*' \
|
|
'pandas=0.16*' \
|
|
'matplotlib=1.4*' \
|
|
'scipy=0.15*' \
|
|
'seaborn=0.6*' \
|
|
'scikit-learn=0.16*' \
|
|
'scikit-image=0.11*' \
|
|
'sympy=0.7*' \
|
|
'cython=0.22*' \
|
|
'patsy=0.3*' \
|
|
'statsmodels=0.6*' \
|
|
'cloudpickle=0.1*' \
|
|
'dill=0.2*' \
|
|
'numba=0.20*' \
|
|
'bokeh=0.9*' \
|
|
&& conda clean -yt
|
|
|
|
# Install Python 2 packages and kernel spec
|
|
RUN conda create -p $CONDA_DIR/envs/python2 python=2.7 \
|
|
'ipython=4.0*' \
|
|
'ipywidgets=4.0*' \
|
|
'pandas=0.16*' \
|
|
'matplotlib=1.4*' \
|
|
'scipy=0.15*' \
|
|
'seaborn=0.6*' \
|
|
'scikit-learn=0.16*' \
|
|
'scikit-image=0.11*' \
|
|
'sympy=0.7*' \
|
|
'cython=0.22*' \
|
|
'patsy=0.3*' \
|
|
'statsmodels=0.6*' \
|
|
'cloudpickle=0.1*' \
|
|
'dill=0.2*' \
|
|
'numba=0.20*' \
|
|
'bokeh=0.9*' \
|
|
pyzmq \
|
|
&& conda clean -yt
|
|
RUN $CONDA_DIR/envs/python2/bin/python \
|
|
$CONDA_DIR/envs/python2/bin/ipython \
|
|
kernelspec
|
|
|
|
# R packages
|
|
RUN conda config --add channels r
|
|
RUN conda install --yes \
|
|
'r-base=3.2*' \
|
|
'r-irkernel=0.4*' \
|
|
'r-plyr=1.8*' \
|
|
'r-devtools=1.8*' \
|
|
'r-dplyr=0.4*' \
|
|
'r-ggplot2=1.0*' \
|
|
'r-tidyr=0.2*' \
|
|
'r-shiny=0.12*' \
|
|
'r-rmarkdown=0.7*' \
|
|
'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
|
|
|
|
# IJulia and Julia packages
|
|
RUN julia -e 'Pkg.add("IJulia")'
|
|
RUN julia -e 'Pkg.add("Gadfly")' && julia -e 'Pkg.add("RDatasets")'
|