2019-01-18 20:45:16 +01:00
|
|
|
FROM jupyter/scipy-notebook
|
|
|
|
|
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-01-18 20:45:16 +01:00
|
|
|
RUN \
|
2019-01-31 09:03:07 +01:00
|
|
|
pip install influxdb && \
|
|
|
|
pip install pymongo && \
|
|
|
|
fix-permissions $CONDA_DIR && \
|
|
|
|
fix-permissions /home/$NB_USER
|
2019-01-18 20:45:16 +01:00
|
|
|
|
2019-10-23 22:37:56 +02:00
|
|
|
CMD ["start-notebook.sh", "--NotebookApp.token=''"]
|
|
|
|
|