mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-15 05:52:57 +00:00
Use mamba instead of conda where possible
This commit is contained in:
@@ -25,11 +25,12 @@ RUN ln -s /bin/tar /bin/gtar
|
||||
USER ${NB_UID}
|
||||
|
||||
# R packages including IRKernel which gets installed globally.
|
||||
RUN conda install --quiet --yes \
|
||||
RUN mamba install --quiet --yes \
|
||||
'r-base' \
|
||||
'r-caret' \
|
||||
'r-crayon' \
|
||||
'r-devtools' \
|
||||
'r-e1071' # dependency of the caret R package \
|
||||
'r-forecast' \
|
||||
'r-hexbin' \
|
||||
'r-htmltools' \
|
||||
@@ -45,12 +46,6 @@ RUN conda install --quiet --yes \
|
||||
'r-tidymodels' \
|
||||
'r-tidyverse' \
|
||||
'unixodbc' && \
|
||||
conda clean --all -f -y && \
|
||||
fix-permissions "${CONDA_DIR}" && \
|
||||
fix-permissions "/home/${NB_USER}"
|
||||
|
||||
# Install e1071 R package (dependency of the caret R package)
|
||||
RUN conda install --quiet --yes 'r-e1071' && \
|
||||
conda clean --all -f -y && \
|
||||
mamba clean --all -f -y && \
|
||||
fix-permissions "${CONDA_DIR}" && \
|
||||
fix-permissions "/home/${NB_USER}"
|
||||
|
Reference in New Issue
Block a user