From 97436b01221b9e4f040abf135590c7c4834cc8df Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Sat, 4 Sep 2021 14:03:41 +0300 Subject: [PATCH 1/2] Describe minimal-notebook dependencies --- minimal-notebook/Dockerfile | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/minimal-notebook/Dockerfile b/minimal-notebook/Dockerfile index 3450e7ca..a2a55747 100644 --- a/minimal-notebook/Dockerfile +++ b/minimal-notebook/Dockerfile @@ -11,23 +11,26 @@ USER root # Install all OS dependencies for fully functional notebook server RUN apt-get update --yes && \ apt-get install --yes --no-install-recommends \ - vim-tiny \ + # Common useful utilities git \ + nano-tiny \ + tzdata \ + unzip \ + vim-tiny \ + # git-over-ssh + openssh-client \ + # TODO: check if these are needed and describe inkscape \ libsm6 \ libxext-dev \ libxrender1 \ lmodern \ netcat \ - openssh-client \ - # ---- nbconvert dependencies ---- + # nbconvert dependencies + # https://nbconvert.readthedocs.io/en/latest/install.html#installing-tex texlive-xetex \ texlive-fonts-recommended \ - texlive-plain-generic \ - # ---- - tzdata \ - unzip \ - nano-tiny && \ + texlive-latex-recommended && \ apt-get clean && rm -rf /var/lib/apt/lists/* # Create alternative for nano -> nano-tiny From 7a7f2ceaa43739e20138d27471f5cc511dbdb954 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Sat, 4 Sep 2021 16:07:10 +0300 Subject: [PATCH 2/2] Fix --- minimal-notebook/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minimal-notebook/Dockerfile b/minimal-notebook/Dockerfile index a2a55747..4b1a4939 100644 --- a/minimal-notebook/Dockerfile +++ b/minimal-notebook/Dockerfile @@ -30,7 +30,7 @@ RUN apt-get update --yes && \ # https://nbconvert.readthedocs.io/en/latest/install.html#installing-tex texlive-xetex \ texlive-fonts-recommended \ - texlive-latex-recommended && \ + texlive-plain-generic && \ apt-get clean && rm -rf /var/lib/apt/lists/* # Create alternative for nano -> nano-tiny