We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b80334d commit 257ace4Copy full SHA for 257ace4
Dockerfile
@@ -35,8 +35,13 @@ RUN mkdir "$pandas_home" \
35
# we just update the base/root from the 'environment.yml' file instead of creating a new one.
36
#
37
# Set up environment
38
+RUN conda config --set channel_priority strict
39
RUN conda install -n base -y -c conda-forge mamba
-RUN mamba env update -n base -f "$pandas_home/environment.yml"
40
+RUN conda info -a \
41
+ && conda config --show-sources \
42
+ && which mamba \
43
+ && mamba info -a
44
+RUN mamba env update -vv -n base -f "$pandas_home/environment.yml"
45
46
# Build C extensions and pandas
47
SHELL ["/bin/bash", "-c"]
0 commit comments