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
|
|
|
|
|
|
|
|
RUN mamba install --yes r-irkernel \
|
|
|
|
r-ggplot2 \
|
|
|
|
r-ggpubr \
|
|
|
|
r-tidyverse \
|
2024-03-25 20:21:51 +01:00
|
|
|
jupyterlab-spellchecker \
|
2024-03-24 14:03:10 +01:00
|
|
|
&& mamba clean --all --force --yes \
|
|
|
|
&& fix-permissions "${CONDA_DIR}" \
|
|
|
|
&& fix-permissions "/home/${NB_USER}"
|
|
|
|
|