2024-03-24 14:03:10 +01:00
|
|
|
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
|
|
|
|
|
2024-03-25 21:55:57 +01:00
|
|
|
RUN mamba install --yes bash_kernel \
|
|
|
|
ansible-kernel \
|
2024-04-12 16:40:45 +02:00
|
|
|
colorhash \
|
2024-03-25 21:55:57 +01:00
|
|
|
jupyterlab-latex \
|
|
|
|
jupyterlab-nbconvert-nocode \
|
|
|
|
jupyterlab-spellchecker \
|
|
|
|
jupyterlab-spreadsheet-editor \
|
|
|
|
jupyterlab_miami_nights \
|
|
|
|
jupyterlab_templates \
|
|
|
|
jupyterlab_vim \
|
2024-04-12 16:40:45 +02:00
|
|
|
pyvis \
|
2024-03-24 14:03:10 +01:00
|
|
|
r-ggplot2 \
|
|
|
|
r-ggpubr \
|
2024-03-25 21:55:57 +01:00
|
|
|
r-irkernel \
|
2024-03-24 14:03:10 +01:00
|
|
|
r-tidyverse \
|
|
|
|
&& mamba clean --all --force --yes \
|
|
|
|
&& fix-permissions "${CONDA_DIR}" \
|
|
|
|
&& fix-permissions "/home/${NB_USER}"
|
|
|
|
|