Skip to content

Commit e19422d

Browse files
authored
Replace mambaforge with miniforge (#259)
1 parent 801a628 commit e19422d

29 files changed

+38
-38
lines changed

.github/workflows/build_and_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
if: runner.os != 'Windows'
5858
uses: conda-incubator/[email protected]
5959
with:
60-
miniforge-variant: Mambaforge-pypy3
60+
miniforge-variant: Miniforge-pypy3
6161
miniforge-version: latest
6262
environment-file: mm-workflows/install/system_deps.yml
6363
activate-environment: mm
@@ -68,7 +68,7 @@ jobs:
6868
if: runner.os == 'Windows'
6969
uses: conda-incubator/[email protected]
7070
with:
71-
miniforge-variant: Mambaforge-pypy3
71+
miniforge-variant: Miniforge-pypy3
7272
miniforge-version: latest
7373
environment-file: mm-workflows/install/system_deps_windows.yml
7474
activate-environment: mm

cwl_adapters/file_format_conversions/biosimspace/Dockerfile_biosimspace

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ FROM ubuntu:22.04
22

33
# Install miniconda
44
RUN apt-get update && apt-get install -y wget
5-
RUN CONDA="Mambaforge-Linux-x86_64.sh" && \
5+
RUN CONDA="Miniforge3-Linux-x86_64.sh" && \
66
wget --quiet https://github.com/conda-forge/miniforge/releases/latest/download/$CONDA && \
77
chmod +x $CONDA && \
8-
./$CONDA -b -p /mambaforge && \
8+
./$CONDA -b -p /miniforge && \
99
rm -f $CONDA
10-
ENV PATH /mambaforge/bin:$PATH
10+
ENV PATH /miniforge/bin:$PATH
1111

1212
RUN conda install -c conda-forge -c openbiosim biosimspace
1313
ENV SIRE_DONT_PHONEHOME 1

cwl_adapters/file_format_conversions/biosimspace/conversion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def main() -> None:
3232

3333
input_filenames = [args.input_top_path, args.input_crd_path]
3434
# This path is w.r.t. the Docker image jakefennick/biosimspace
35-
properties = {'GROMACS_PATH': '/mambaforge/share/gromacs/top/'}
35+
properties = {'GROMACS_PATH': '/miniforge/share/gromacs/top/'}
3636
system = BSS.IO.readMolecules(input_filenames, properties)
3737

3838
output_file_formats = [args.output_top_format, args.output_crd_format]

examples/data/Dockerfile_data

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ FROM ubuntu:22.04 as download
22

33
# Install miniconda
44
RUN apt-get update && apt-get install -y wget
5-
RUN CONDA="Mambaforge-Linux-x86_64.sh" && \
5+
RUN CONDA="Miniforge3-Linux-x86_64.sh" && \
66
wget --quiet https://github.com/conda-forge/miniforge/releases/latest/download/$CONDA && \
77
chmod +x $CONDA && \
8-
./$CONDA -b -p /mambaforge && \
8+
./$CONDA -b -p /miniforge && \
99
rm -f $CONDA
10-
ENV PATH /mambaforge/bin:$PATH
10+
ENV PATH /miniforge/bin:$PATH
1111

1212
RUN conda install -c conda-forge wget libarchive
1313
# bsdtar is installed with libarchive; see download_data.sh

examples/diffdock/Dockerfile_diffdock_cpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# docker build -f Dockerfile_diffdock_cpu -t mrbrandonwalker/diffdock_cpu .
22

3-
FROM condaforge/mambaforge
3+
FROM condaforge/miniforge3
44
# NOT mambaforge-pypy3 (torch-scatter is incompatible with pypy)
55

66
RUN apt-get update && apt-get install -y wget git build-essential

examples/diffdock/Dockerfile_diffdock_gpu

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ FROM nvidia/cuda:11.7.1-cudnn8-devel-ubuntu20.04 as devel
55
# Install conda / mamba
66
RUN apt-get update && apt-get install -y wget git build-essential
77

8-
RUN CONDA="Mambaforge-Linux-x86_64.sh" && \
8+
RUN CONDA="Miniforge3-Linux-x86_64.sh" && \
99
wget --quiet https://github.com/conda-forge/miniforge/releases/latest/download/$CONDA && \
1010
chmod +x $CONDA && \
11-
./$CONDA -b -p /mambaforge && \
11+
./$CONDA -b -p /miniforge && \
1212
rm -f $CONDA
13-
ENV PATH /mambaforge/bin:$PATH
13+
ENV PATH /miniforge/bin:$PATH
1414

1515
RUN conda install pytorch==1.13.0 pytorch-cuda=11.7 pytorch-cluster -c pytorch -c nvidia -c pyg
1616

@@ -50,9 +50,9 @@ RUN mamba clean --all --yes
5050
FROM nvidia/cuda:11.7.1-cudnn8-runtime-ubuntu20.04 as runtime
5151

5252
COPY --from=devel DiffDock/ DiffDock/
53-
COPY --from=devel mambaforge/ mambaforge/
53+
COPY --from=devel miniforge/ miniforge/
5454

5555
# shell file to copy cached files, run diffdock and remove large cached files after execution
5656
ADD diffdock_cmds.sh /DiffDock/
5757

58-
ENV PATH /mambaforge/bin:$PATH
58+
ENV PATH /miniforge/bin:$PATH

examples/diffdock/Dockerfile_pose_cluster_filter

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# docker build -f Dockerfile_pose_cluster_filter -t mrbrandonwalker/pose_cluster_filter .
33

4-
FROM condaforge/mambaforge
4+
FROM condaforge/miniforge3
55

66
RUN conda install -c conda-forge rdkit --yes
77

examples/diffdock/Dockerfile_sanitize_ligand

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# docker build -f Dockerfile_sanitize_ligand -t mrbrandonwalker/sanitize_ligand .
33

4-
FROM condaforge/mambaforge
4+
FROM condaforge/miniforge3
55
# NOT mambaforge-pypy3 (rdkit is incompatible with pypy)
66

77
RUN conda install -c conda-forge rdkit --yes

examples/scripts/Dockerfile_align_protein_ca_mda

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM condaforge/mambaforge
1+
FROM condaforge/miniforge3
22
# NOT mambaforge-pypy3 (mdanalysis is incompatible with pypy)
33

44
RUN mamba install -c conda-forge mdanalysis

examples/scripts/Dockerfile_align_protein_ca_pymol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM condaforge/mambaforge
1+
FROM condaforge/miniforge3
22
# NOT mambaforge-pypy3 (mdanalysis & pymol are incompatible with pypy)
33

44
RUN mamba install -c conda-forge mdanalysis

0 commit comments

Comments
 (0)