Wolfgang Hottgenroth 7483095d5f
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
add plotly
2025-01-21 18:42:52 +01:00

23 lines
527 B
Docker

FROM quay.io/jupyter/scipy-notebook:2024-01-23
LABEL Maintainer="Wolfgang Hottgenroth <wolfgang.hottgenroth@icloud.com>"
ENV PASSWORD ""
USER root
RUN \
apt update && \
apt install -y postgresql-client-common libpq-dev
USER $NB_USER
RUN \
conda update -y -n base conda && \
pip install psycopg && \
pip install plotly && \
conda install -y pandas-datareader && \
fix-permissions $CONDA_DIR && \
fix-permissions /home/$NB_USER
CMD start-notebook.sh --NotebookApp.token='' --NotebookApp.password=$PASSWORD