mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-17 23:12:56 +00:00
Proposed improvements for G_SLICE (#1697)
* Try to fix mamba under aarch64 QEMU by setting ENV G_SLICE=always-malloc * Set G_SLICE inside if statement * Write "extract_threads: 1" to /opt/.condarc Co-authored-by: Ayaz Salikhov <mathbunnyru@gmail.com>
This commit is contained in:
@@ -61,7 +61,13 @@ USER ${NB_UID}
|
||||
|
||||
# R packages including IRKernel which gets installed globally.
|
||||
# r-e1071: dependency of the caret R package
|
||||
RUN mamba install --quiet --yes \
|
||||
RUN arch=$(uname -m) && \
|
||||
if [ "${arch}" == "aarch64" ]; then \
|
||||
# Prevent libmamba from sporadically hanging on arm64 under QEMU
|
||||
# <https://github.com/mamba-org/mamba/issues/1611>
|
||||
export G_SLICE=always-malloc; \
|
||||
fi && \
|
||||
mamba install --quiet --yes \
|
||||
'r-base' \
|
||||
'r-caret' \
|
||||
'r-crayon' \
|
||||
|
Reference in New Issue
Block a user