Skip to content

Commit b53f77b

Browse files
authored
Update Dockerfile
1 parent c99fb91 commit b53f77b

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,13 @@ USER jovyan
1313
RUN conda update conda
1414
RUN conda config --remove channels conda-forge
1515
RUN conda config --add channels conda-forge
16+
#RUN conda config --set channel_priority strict
17+
#RUN conda config --set solver classic
1618

1719
# Create environment
1820
COPY environment.yml /home/jovyan/
19-
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
2023

2124
# Activating environment
2225
RUN echo ". /opt/conda/etc/profile.d/conda.sh" >> /home/jovyan/.bash_profile && \

0 commit comments

Comments
 (0)