Jupyterlab/Dockerfile

19 lines
561 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-24 09:44:25 +00:00
RUN pip install xgboost
RUN pip install datascience
2019-01-25 12:39:29 +00:00
RUN pip install okpy
2019-01-25 12:50:00 +00:00
#Basemap
RUN conda install --yes -c obspy basemap basemap-data-hires
RUN conda create --name basemap python=3.6 basemap
RUN conda activate basemap