We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c99fb91 commit b53f77bCopy full SHA for b53f77b
1 file changed
Dockerfile
@@ -13,10 +13,13 @@ USER jovyan
13
RUN conda update conda
14
RUN conda config --remove channels conda-forge
15
RUN conda config --add channels conda-forge
16
+#RUN conda config --set channel_priority strict
17
+#RUN conda config --set solver classic
18
19
# Create environment
20
COPY environment.yml /home/jovyan/
-RUN conda env update -n base -f /home/jovyan/environment.yml
21
+RUN conda install -n base -c conda-forge mamba
22
+RUN mamba env update -n base -f /home/jovyan/environment.yml
23
24
# Activating environment
25
RUN echo ". /opt/conda/etc/profile.d/conda.sh" >> /home/jovyan/.bash_profile && \
0 commit comments