Merge pull request #1458 from mathbunnyru/asalikhov/improve_minimal_notebook_dependencies

Describe minimal-notebook dependencies
This commit is contained in:
Ayaz Salikhov
2021-09-04 18:53:04 +03:00
committed by GitHub

View File

@@ -11,23 +11,26 @@ USER root
# Install all OS dependencies for fully functional notebook server # Install all OS dependencies for fully functional notebook server
RUN apt-get update --yes && \ RUN apt-get update --yes && \
apt-get install --yes --no-install-recommends \ apt-get install --yes --no-install-recommends \
vim-tiny \ # Common useful utilities
git \ git \
nano-tiny \
tzdata \
unzip \
vim-tiny \
# git-over-ssh
openssh-client \
# TODO: check if these are needed and describe
inkscape \ inkscape \
libsm6 \ libsm6 \
libxext-dev \ libxext-dev \
libxrender1 \ libxrender1 \
lmodern \ lmodern \
netcat \ netcat \
openssh-client \ # nbconvert dependencies
# ---- nbconvert dependencies ---- # https://nbconvert.readthedocs.io/en/latest/install.html#installing-tex
texlive-xetex \ texlive-xetex \
texlive-fonts-recommended \ texlive-fonts-recommended \
texlive-plain-generic \ texlive-plain-generic && \
# ----
tzdata \
unzip \
nano-tiny && \
apt-get clean && rm -rf /var/lib/apt/lists/* apt-get clean && rm -rf /var/lib/apt/lists/*
# Create alternative for nano -> nano-tiny # Create alternative for nano -> nano-tiny