From 839496b1e38380bbfcdd26bf658eac48e7b8d588 Mon Sep 17 00:00:00 2001 From: Philip Cook Date: Mon, 10 Jun 2024 10:50:41 -0400 Subject: [PATCH] COMP: Docker build suddenly stopped working, needs classic solver --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c5cf5613..101c565d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,8 +24,9 @@ ENV PATH=/opt/conda/bin:$PATH # install cmake binary using conda for multi-arch support # apt install fails because libssl1.0.0 is not available for newer Debian -RUN conda update -c defaults conda -RUN conda install -c conda-forge cmake +RUN conda update -c defaults conda && \ + conda install -c conda-forge cmake && \ + conda config --set solver classic WORKDIR /usr/local/src COPY environment.yml . @@ -42,4 +43,4 @@ RUN bash tests/run_tests.sh # optimize layers FROM debian:bookworm-slim COPY --from=builder /opt/conda /opt/conda -ENV PATH=/opt/conda/bin:$PATH \ No newline at end of file +ENV PATH=/opt/conda/bin:$PATH