Jupyterlab/Dockerfile

19 lines
572 B
Docker
Raw Normal View History

2018-12-20 14:25:13 +00:00
FROM jupyter/datascience-notebook:latest
2018-12-13 17:02:31 +00:00
USER root
2018-12-20 14:23:27 +00:00
RUN ls
RUN echo "c.NotebookApp.password = u'sha1:143c02a61a4a:8ea704f689c1b8bfa78dc1e65d363d287eda19e1'" >> ~/.jupyter/jupyter_notebook_config.py
2018-12-13 17:20:56 +00:00
USER jovyan
2018-12-20 14:23:27 +00:00
RUN ls
2018-12-20 14:33:12 +00:00
RUN pip install tensorflow
RUN pip install bokeh
2018-12-20 14:38:57 +00:00
RUN pip install scikit-learn
RUN pip install seaborn
RUN pip install plotly
2019-01-20 18:45:50 +00:00
RUN pip install xgboost
RUN pip install pyproj
RUN pip install pysph
2019-01-20 18:52:06 +00:00
RUN wget https://github.com/matplotlib/basemap/archive/v1.2.0rel.tar.gz
RUN tar -xvzf v1.2.0rel.tar.gz
RUN rm v1.2.0rel.tar.gz
2019-01-20 18:54:51 +00:00
RUN cd basemap-1.2.0rel & ls
2019-01-20 18:52:06 +00:00
RUN ls