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