2019-11-07 15:07:39 +01:00
|
|
|
FROM jupyter/scipy-notebook:latest
|
2019-01-18 20:45:16 +01:00
|
|
|
|
2019-10-23 22:37:56 +02:00
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <wolfgang.hottgenroth@icloud.com>"
|
|
|
|
LABEL ImageName="registry.gitlab.com/wolutator/registry.gitlab.com/wolutator/"
|
|
|
|
|
2019-10-24 13:34:48 +02:00
|
|
|
ENV PASSWORD ""
|
2019-10-23 22:59:35 +02:00
|
|
|
|
2019-01-18 20:45:16 +01:00
|
|
|
RUN \
|
2019-01-31 09:03:07 +01:00
|
|
|
pip install influxdb && \
|
|
|
|
pip install pymongo && \
|
2019-11-07 14:48:58 +01:00
|
|
|
conda install pandas-datareader && \
|
2019-01-31 09:03:07 +01:00
|
|
|
fix-permissions $CONDA_DIR && \
|
|
|
|
fix-permissions /home/$NB_USER
|
2019-01-18 20:45:16 +01:00
|
|
|
|
2019-10-24 13:34:48 +02:00
|
|
|
CMD start-notebook.sh --NotebookApp.token='' --NotebookApp.password=$PASSWORD
|
2019-10-23 22:37:56 +02:00
|
|
|
|