diff --git a/datascience-notebook/Dockerfile b/datascience-notebook/Dockerfile index 9e3877d1..ef89e642 100644 --- a/datascience-notebook/Dockerfile +++ b/datascience-notebook/Dockerfile @@ -75,23 +75,23 @@ RUN mamba install --quiet --yes \ 'r-nycflights13' \ 'r-randomforest' \ 'r-rcurl' \ + 'r-rmarkdown' \ 'r-rodbc' \ 'r-rsqlite' \ 'r-shiny' \ + 'r-tidyverse' \ 'rpy2' \ '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 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}"; \ diff --git a/r-notebook/Dockerfile b/r-notebook/Dockerfile index 4adb90c8..3319a802 100644 --- a/r-notebook/Dockerfile +++ b/r-notebook/Dockerfile @@ -52,7 +52,6 @@ RUN mamba install --quiet --yes \ fix-permissions "/home/${NB_USER}" # `r-tidymodels` is not easy to install under arm -# hadolint ignore=SC2039 RUN set -x && \ arch=$(uname -m) && \ if [ "${arch}" == "x86_64" ]; then \