We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cc34aa commit f61ecbcCopy full SHA for f61ecbc
1 file changed
Dockerfile
@@ -13,13 +13,10 @@ 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/
21
-RUN conda install -n base -c conda-forge mamba
22
-RUN mamba env update -n base -f /home/jovyan/environment.yml
+RUN conda 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