Skip to content

Commit 257ace4

Browse files
committed
enable debug output
1 parent b80334d commit 257ace4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Dockerfile

+6-1
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,13 @@ RUN mkdir "$pandas_home" \
3535
# we just update the base/root from the 'environment.yml' file instead of creating a new one.
3636
#
3737
# Set up environment
38+
RUN conda config --set channel_priority strict
3839
RUN conda install -n base -y -c conda-forge mamba
39-
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"
4045

4146
# Build C extensions and pandas
4247
SHELL ["/bin/bash", "-c"]

0 commit comments

Comments
 (0)