mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-17 15:02:57 +00:00
Build r-notebook under arm (again)
This commit is contained in:
@@ -40,13 +40,23 @@ RUN mamba install --quiet --yes \
|
||||
'r-nycflights13' \
|
||||
'r-randomforest' \
|
||||
'r-rcurl' \
|
||||
'r-rmarkdown' \
|
||||
'r-rodbc' \
|
||||
'r-rsqlite' \
|
||||
'r-shiny' \
|
||||
'r-tidymodels' \
|
||||
'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
|
||||
RUN set -x && \
|
||||
arch=$(uname -m) && \
|
||||
if [ "${arch}" == "x86_64" ]; then \
|
||||
mamba install --quiet --yes \
|
||||
'r-rmarkdown' \
|
||||
'r-tidymodels' \
|
||||
'r-tidyverse' && \
|
||||
mamba clean --all -f -y && \
|
||||
fix-permissions "${CONDA_DIR}" && \
|
||||
fix-permissions "/home/${NB_USER}"; \
|
||||
fi; \
|
||||
|
Reference in New Issue
Block a user