File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -22,19 +22,19 @@ RUN apt-get update --yes && \
22
22
USER ${NB_UID}
23
23
24
24
# R packages including IRKernel which gets installed globally.
25
- RUN conda install --quiet --yes \
25
+ RUN mamba install --quiet --yes \
26
26
'r-base=4.0.3' \
27
27
'r-ggplot2=3.3*' \
28
28
'r-irkernel=1.1*' \
29
29
'r-rcurl=1.98*' \
30
30
'r-sparklyr=1.6*' && \
31
- conda clean --all -f -y && \
31
+ mamba clean --all -f -y && \
32
32
fix-permissions "${CONDA_DIR}" && \
33
33
fix-permissions "/home/${NB_USER}"
34
34
35
35
# Spylon-kernel
36
- RUN conda install --quiet --yes 'spylon-kernel=0.4*' && \
37
- conda clean --all -f -y && \
36
+ RUN mamba install --quiet --yes 'spylon-kernel=0.4*' && \
37
+ mamba clean --all -f -y && \
38
38
python -m spylon_kernel install --sys-prefix && \
39
39
rm -rf "/home/${NB_USER}/.local" && \
40
40
fix-permissions "${CONDA_DIR}" && \
Original file line number Diff line number Diff line change @@ -55,9 +55,9 @@ RUN cp -p "${SPARK_HOME}/conf/spark-defaults.conf.template" "${SPARK_HOME}/conf/
55
55
USER ${NB_UID}
56
56
57
57
# Install pyarrow
58
- RUN conda install --quiet --yes --satisfied-skip-solve \
58
+ RUN mamba install --quiet --yes \
59
59
'pyarrow=4.0.*' && \
60
- conda clean --all -f -y && \
60
+ mamba clean --all -f -y && \
61
61
fix-permissions "${CONDA_DIR}" && \
62
62
fix-permissions "/home/${NB_USER}"
63
63
You can’t perform that action at this time.
0 commit comments