We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57bedab commit bd347e0Copy full SHA for bd347e0
images/docker-stacks-foundation/Dockerfile
@@ -131,6 +131,9 @@ RUN set -x && \
131
# Pin major.minor version of python
132
# https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-pkgs.html#preventing-packages-from-updating-pinning
133
mamba list --full-name 'python' | awk 'END{sub("[^.]*$", "*", $2); print $1 " " $2}' >> "${CONDA_DIR}/conda-meta/pinned" && \
134
+ # Temporarily pin libxml2 to avoid ABI breakage
135
+ # https://github.com/conda-forge/libxml2-feedstock/issues/145
136
+ echo 'libxml2<2.14.0' >> /opt/conda/conda-meta/pinned && \
137
mamba clean --all -f -y && \
138
fix-permissions "${CONDA_DIR}" && \
139
fix-permissions "/home/${NB_USER}"
0 commit comments