my-jupyterLab/build/Dockerfile
2024-04-12 16:40:45 +02:00

28 lines
959 B
Docker

FROM quay.io/jupyter/scipy-notebook
USER root
RUN apt-get update \
&& apt-get install --yes --quiet --no-install-recommends \
inkscape \
&& apt-get clean
USER $NB_UID
RUN mamba install --yes bash_kernel \
ansible-kernel \
colorhash \
jupyterlab-latex \
jupyterlab-nbconvert-nocode \
jupyterlab-spellchecker \
jupyterlab-spreadsheet-editor \
jupyterlab_miami_nights \
jupyterlab_templates \
jupyterlab_vim \
pyvis \
r-ggplot2 \
r-ggpubr \
r-irkernel \
r-tidyverse \
&& mamba clean --all --force --yes \
&& fix-permissions "${CONDA_DIR}" \
&& fix-permissions "/home/${NB_USER}"