feat: add common required modules to the jupyter instance
All checks were successful
Build / build (pull_request) Successful in 1m10s

- numpy, pandas, matplotlib, pyarrow, pyyaml
This commit is contained in:
Ben Vincent 2024-11-16 19:52:38 +11:00
parent 6bff1ed83f
commit df744c031b

View File

@ -23,6 +23,14 @@ RUN /opt/jupyter/bin/pip install \
'jupyterhub==5.2.1' \
'notebook==7.2.2'
# install additional python modules
RUN /opt/jupyter/bin/pip install \
numpy \
pandas \
matplotlib \
pyarrow \
pyyaml
# create a user, since we don't want to run as root
RUN useradd -m jupyter
ENV HOME=/home/jupyter