From d707ba91b7d08dd40085e21a8b66c35f6e0be7fb Mon Sep 17 00:00:00 2001 From: lrlunin Date: Sat, 15 Jul 2023 22:03:25 +0200 Subject: [PATCH] installed octave kernel --- mbi-div-b-notebook-base/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mbi-div-b-notebook-base/Dockerfile b/mbi-div-b-notebook-base/Dockerfile index b92cbc8..f9839fe 100644 --- a/mbi-div-b-notebook-base/Dockerfile +++ b/mbi-div-b-notebook-base/Dockerfile @@ -29,7 +29,10 @@ RUN apt-get update --yes && \ # user requests imagemagick \ # for matplotlib anim - ffmpeg && \ + ffmpeg \ + # for octave installation + octave \ + gnuplot && \ apt-get clean && rm -rf /var/lib/apt/lists/* RUN chmod +x /tmp/scripts/install-mbistyles-fonts.sh && /tmp/scripts/install-mbistyles-fonts.sh @@ -76,6 +79,7 @@ RUN mamba install --yes \ 'xarray' \ 'netCDF4' \ 'jupyter-collaboration' \ + 'octave_kernel' \ 'conda-forge::dask-labextension' && \ mamba clean --all -f -y && \ fix-permissions "${CONDA_DIR}" && \