I am trying to build a custom Docker Image using jupyter/datascience-notebook
which is based off of jupyter/base-notebook
I can see that mamba was used to install/configure conda environment for jupyter.
Below is my Dockerfile (the portion which the question is about)
#REF: https://stackoverflow.com/q/66547389
RUN /opt/conda/bin/conda create -n pypy pypy ipykernel -y
RUN /opt/conda/envs/pypy/bin/pypy -m ipykernel install --prefix=/opt/conda/ --name pypy3 --display-name="pypy3"
#-- INSTALL JUPYTERLAB PLUGINS --#
RUN /opt/conda/bin/conda install -c conda-forge jupyterlab-git
RUN /opt/conda/bin/conda install -c conda-forge jupyter-resource-usage
My question - should I actually be using mamba
instead of /opt/conda/bin/conda
since Mamba is a wrapper on conda? Or, am I doing the right thing?
Regards,