17 lines
522 B
Docker
17 lines
522 B
Docker
FROM jupyter/datascience-notebook:latest
|
|
USER root
|
|
RUN ls
|
|
RUN echo "c.NotebookApp.password = u''" >> ~/.jupyter/jupyter_notebook_config.py
|
|
RUN echo "c.NotebookApp.token = u''" >> ~/.jupyter/jupyter_notebook_config.py
|
|
USER jovyan
|
|
RUN ls
|
|
RUN pip install tensorflow
|
|
RUN pip install bokeh
|
|
RUN pip install scikit-learn
|
|
RUN pip install seaborn
|
|
RUN pip install plotly
|
|
RUN pip install xgboost
|
|
RUN pip install datascience
|
|
RUN pip install okpy
|
|
RUN pip install --user git+https://github.com/matplotlib/basemap.git
|
|
WORKDIR $HOME/work/ |