Wolfgang Hottgenroth 57949518bb
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
woodpecker ci
2024-01-26 19:14:43 +01:00

22 lines
501 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 && \
conda install -y pandas-datareader && \
fix-permissions $CONDA_DIR && \
fix-permissions /home/$NB_USER
CMD start-notebook.sh --NotebookApp.token='' --NotebookApp.password=$PASSWORD