Skip to content

Commit 732af24

Browse files
dpark01claude
andcommitted
Fix Docker and Snakemake CI workflows
- Use mambaorg/micromamba:2.5.0-debian12-slim (2.0.0-ubuntu24.04 doesn't exist) - Add --cores 1 to snakemake dry-run (required by workflow) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent d3bba97 commit 732af24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/snakemake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ jobs:
2424
- name: Validate Snakefile syntax (dry-run)
2525
run: |
2626
cd workflows
27-
snakemake -s Snakefile.example --dry-run --quiet
27+
snakemake -s Snakefile.example --dry-run --quiet --cores 1
2828
shell: micromamba-shell {0}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mambaorg/micromamba:2.0.0-ubuntu24.04
1+
FROM mambaorg/micromamba:2.5.0-debian12-slim
22

33
COPY --chown=$MAMBA_USER:$MAMBA_USER environment.yml /tmp/environment.yml
44
RUN micromamba install -y -n base -f /tmp/environment.yml && \

0 commit comments

Comments
 (0)