17 lines
455 B
Docker
17 lines
455 B
Docker
FROM jupyter/scipy-notebook:latest
|
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <wolfgang.hottgenroth@icloud.com>"
|
|
LABEL ImageName="registry.gitlab.com/wolutator/registry.gitlab.com/wolutator/"
|
|
|
|
ENV PASSWORD ""
|
|
|
|
RUN \
|
|
pip install influxdb && \
|
|
pip install pymongo && \
|
|
conda install pandas-datareader && \
|
|
fix-permissions $CONDA_DIR && \
|
|
fix-permissions /home/$NB_USER
|
|
|
|
CMD start-notebook.sh --NotebookApp.token='' --NotebookApp.password=$PASSWORD
|
|
|