Skip to content

Commit eda7208

Browse files
Merge pull request #3274 from mahesh-panchal/gitpod_miniforge
Gitpod miniforge
2 parents 3081f83 + f410310 commit eda7208

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
- Update GitHub Actions ([#3237](https://github.com/nf-core/tools/pull/3237))
3636
- add `--dir/-d` option to schema commands ([#3247](https://github.com/nf-core/tools/pull/3247))
3737
- Update pre-commit hook astral-sh/ruff-pre-commit to v0.7.1 ([#3250](https://github.com/nf-core/tools/pull/3250))
38+
- Update Gitpod image to use Miniforge instead of Miniconda([#3274](https://github.com/nf-core/tools/pull/3274))
3839

3940
## [v3.0.2 - Titanium Tapir Patch](https://github.com/nf-core/tools/releases/tag/3.0.2) - [2024-10-11]
4041

nf_core/gitpod/gitpod.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ RUN apt-get update --quiet && \
2323
add-apt-repository -y ppa:apptainer/ppa && \
2424
apt-get update --quiet && \
2525
apt-get install --quiet --yes apptainer && \
26-
wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
27-
bash Miniconda3-latest-Linux-x86_64.sh -b -p /opt/conda && \
28-
rm Miniconda3-latest-Linux-x86_64.sh && \
26+
wget --quiet https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh && \
27+
bash Miniforge3-Linux-x86_64.sh -b -p /opt/conda && \
28+
rm Miniforge3-Linux-x86_64.sh && \
2929
apt-get clean && \
3030
rm -rf /var/lib/apt/lists/*
3131

0 commit comments

Comments
 (0)