|
| 1 | +ARG BASE_CONTAINER=jupyter/datascience-notebook:d990a62010ae |
| 2 | +FROM $BASE_CONTAINER |
| 3 | + |
| 4 | +LABEL maintainer= "UW-IT AXDD <[email protected]>" |
| 5 | + |
| 6 | +# Base image includes: |
| 7 | +# texlive, git, vi, nano, tzdata, unzip |
| 8 | +# dask, pandas, numexpr, matplotlib, scipy, seaborn, scikit-learn, |
| 9 | +# scikit-image, sympy, cython, patsy, statsmodels, cloudpickle, dill, numba, |
| 10 | +# bokeh, sqlalchemy, hdf5, vincent, beautifulsoup, protobuf, xlrd, bottleneck, |
| 11 | +# pytables, ipywidgets, ipympl, facets |
| 12 | +# tidyverse, devtools, shiny, rmarkdown, forecast, rsqlite, nycflights13, |
| 13 | +# caret, tidymodels, rcurl, randomforest# |
| 14 | +# julia, ijulia, hdf5, gadfly, rdatasets |
| 15 | + |
| 16 | +RUN conda install \ |
| 17 | + requests |
| 18 | + |
| 19 | +# Install Python 3 packages |
| 20 | +RUN pip install \ |
| 21 | + requests-html \ |
| 22 | + nbresuse==0.3.3 \ |
| 23 | + nbgitpuller && \ |
| 24 | + jupyter serverextension enable --py nbresuse --sys-prefix && \ |
| 25 | + jupyter nbextension install --py nbresuse --sys-prefix && \ |
| 26 | + jupyter nbextension enable --py nbresuse --sys-prefix && \ |
| 27 | + jupyter serverextension enable nbgitpuller --sys-prefix |
| 28 | + |
| 29 | +USER root |
| 30 | + |
| 31 | +RUN apt-get update && apt-get install -y vim gcc |
| 32 | + |
| 33 | +# RUN echo 'export LD_LIBRARY_PATH=/usr/local/nvidia/lib64' >> /etc/profile |
| 34 | +# RUN echo 'export PATH=$PATH:/usr/local/nvidia/bin'>> /etc/profile |
| 35 | +# COPY kernel.json /opt/conda/share/jupyter/kernels/python3/kernel.json |
| 36 | + |
| 37 | +USER $NB_UID |
0 commit comments