mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-15 22:12:57 +00:00
Merge pull request #1691 from mathbunnyru/asalikhov/better_arm_datascience
Better arm image for datascience-notebook
This commit is contained in:
@@ -75,23 +75,23 @@ RUN mamba install --quiet --yes \
|
|||||||
'r-nycflights13' \
|
'r-nycflights13' \
|
||||||
'r-randomforest' \
|
'r-randomforest' \
|
||||||
'r-rcurl' \
|
'r-rcurl' \
|
||||||
|
'r-rmarkdown' \
|
||||||
'r-rodbc' \
|
'r-rodbc' \
|
||||||
'r-rsqlite' \
|
'r-rsqlite' \
|
||||||
'r-shiny' \
|
'r-shiny' \
|
||||||
|
'r-tidyverse' \
|
||||||
'rpy2' \
|
'rpy2' \
|
||||||
'unixodbc' && \
|
'unixodbc' && \
|
||||||
mamba clean --all -f -y && \
|
mamba clean --all -f -y && \
|
||||||
fix-permissions "${CONDA_DIR}" && \
|
fix-permissions "${CONDA_DIR}" && \
|
||||||
fix-permissions "/home/${NB_USER}"
|
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 && \
|
RUN set -x && \
|
||||||
arch=$(uname -m) && \
|
arch=$(uname -m) && \
|
||||||
if [ "${arch}" == "x86_64" ]; then \
|
if [ "${arch}" == "x86_64" ]; then \
|
||||||
mamba install --quiet --yes \
|
mamba install --quiet --yes \
|
||||||
'r-rmarkdown' \
|
'r-tidymodels' && \
|
||||||
'r-tidymodels' \
|
|
||||||
'r-tidyverse' && \
|
|
||||||
mamba clean --all -f -y && \
|
mamba clean --all -f -y && \
|
||||||
fix-permissions "${CONDA_DIR}" && \
|
fix-permissions "${CONDA_DIR}" && \
|
||||||
fix-permissions "/home/${NB_USER}"; \
|
fix-permissions "/home/${NB_USER}"; \
|
||||||
|
@@ -52,7 +52,6 @@ RUN mamba install --quiet --yes \
|
|||||||
fix-permissions "/home/${NB_USER}"
|
fix-permissions "/home/${NB_USER}"
|
||||||
|
|
||||||
# `r-tidymodels` is not easy to install under arm
|
# `r-tidymodels` is not easy to install under arm
|
||||||
# hadolint ignore=SC2039
|
|
||||||
RUN set -x && \
|
RUN set -x && \
|
||||||
arch=$(uname -m) && \
|
arch=$(uname -m) && \
|
||||||
if [ "${arch}" == "x86_64" ]; then \
|
if [ "${arch}" == "x86_64" ]; then \
|
||||||
|
Reference in New Issue
Block a user