16 lines
394 B
Docker
Raw Normal View History

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-10-23 23:17:41 +02:00
ENV JUPYTER_GATEWAY_URL ""
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 && \
fix-permissions $CONDA_DIR && \
fix-permissions /home/$NB_USER
2019-01-18 20:45:16 +01:00
2019-10-23 23:17:41 +02:00
CMD ["start-notebook.sh", "--NotebookApp.token=''"]
2019-10-23 22:37:56 +02:00