mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-16 06:22:56 +00:00
Merge pull request #1592 from mathbunnyru/asalikhov/more_arm_packages
Install more r packages for arm
This commit is contained in:
@@ -37,23 +37,23 @@ RUN mamba install --quiet --yes \
|
||||
'r-nycflights13' \
|
||||
'r-randomforest' \
|
||||
'r-rcurl' \
|
||||
'r-rmarkdown' \
|
||||
'r-rodbc' \
|
||||
'r-rsqlite' \
|
||||
'r-shiny' \
|
||||
'r-tidyverse' \
|
||||
'unixodbc' && \
|
||||
mamba clean --all -f -y && \
|
||||
fix-permissions "${CONDA_DIR}" && \
|
||||
fix-permissions "/home/${NB_USER}"
|
||||
|
||||
# These packages are not easy to install under arm
|
||||
# `r-tidymodels` is not easy to install under arm
|
||||
# hadolint ignore=SC2039
|
||||
RUN set -x && \
|
||||
arch=$(uname -m) && \
|
||||
if [ "${arch}" == "x86_64" ]; then \
|
||||
mamba install --quiet --yes \
|
||||
'r-rmarkdown' \
|
||||
'r-tidymodels' \
|
||||
'r-tidyverse' && \
|
||||
'r-tidymodels' && \
|
||||
mamba clean --all -f -y && \
|
||||
fix-permissions "${CONDA_DIR}" && \
|
||||
fix-permissions "/home/${NB_USER}"; \
|
||||
|
Reference in New Issue
Block a user