Skip to content

Commit

Permalink
use miniforge3 not obsolte mambaforge docker img
Browse files Browse the repository at this point in the history
  • Loading branch information
kdm9 committed Jan 22, 2024
1 parent df8a351 commit a4c0b07
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
FROM condaforge/mambaforge:latest

FROM condaforge/miniforge3:latest
RUN conda config --add channels defaults && \
conda config --add channels bioconda && \
conda config --add channels conda-forge && \
conda config --set channel_priority strict && \
mamba install snakemake=8 natsort python>=3.11
WORKDIR /usr/local/src/acanthophis
COPY . .
RUN conda config --add channels bioconda && mamba install --yes --all snakemake && pip install -e .
RUN pip install -e .

0 comments on commit a4c0b07

Please sign in to comment.