mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-12 20:42:57 +00:00
49 lines
1.1 KiB
Docker
49 lines
1.1 KiB
Docker
FROM jupyter/minimal-notebook
|
|
|
|
MAINTAINER Jupyter Project <jupyter@googlegroups.com>
|
|
|
|
USER jovyan
|
|
|
|
# Install Python 3 packages
|
|
RUN conda install --yes \
|
|
'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=3.2*' \
|
|
'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 install-self --user
|
|
|
|
# Switch back to root so that supervisord runs under that user
|
|
USER root |