16 lines
420 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:00:40 +02:00
ARG 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:07:20 +02:00
CMD ["start-notebook.sh", "--NotebookApp.token=''", "--NotebookApp.base_url=${GATEWAY}"]
2019-10-23 22:37:56 +02:00