From dfe1c533b6ed82e94fa0591abef32d51e2da1074 Mon Sep 17 00:00:00 2001 From: Phil Blowey Date: Thu, 22 Jan 2026 16:46:22 +0000 Subject: [PATCH] Migrate to miniforge from miniconda --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6b35dfc..ffb5fdf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,9 @@ FROM debian:12-slim RUN apt-get update && apt-get install -y curl bzip2 # install miniconda -RUN curl -LO https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \ - bash Miniconda3-latest-Linux-x86_64.sh -b -p /opt/miniconda && \ - rm Miniconda3-latest-Linux-x86_64.sh +RUN curl -LO "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh" && \ + bash Miniforge3-Linux-x86_64.sh -b -p /opt/miniconda && \ + rm Miniforge3-Linux-x86_64.sh # make non-activate conda commands available COPY requirements.txt . RUN /opt/miniconda/bin/conda create -yp /opt/pymca -c conda-forge --file requirements.txt python