From df744c031b23b6d50a95894a598ec6f7f4d0dfac Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sat, 16 Nov 2024 19:52:38 +1100 Subject: [PATCH] feat: add common required modules to the jupyter instance - numpy, pandas, matplotlib, pyarrow, pyyaml --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Dockerfile b/Dockerfile index c8b14f1..c9717f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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