-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Paolo Di Tommaso <[email protected]>
- Loading branch information
1 parent
79c4244
commit 0a5627d
Showing
4 changed files
with
27 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
name: rnaseq-nf | ||
channels: | ||
- seqera | ||
- bioconda | ||
- conda-forge | ||
- defaults | ||
- conda-forge | ||
- bioconda | ||
dependencies: | ||
- salmon=1.10.2 | ||
- fastqc=0.12.1 | ||
- multiqc=1.15 | ||
- bioconda::fastqc=0.12.1 | ||
- bioconda::multiqc=1.25 | ||
- bioconda::salmon=1.10.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
FROM mambaorg/micromamba | ||
# | ||
# don't waste time with this | ||
# use seqera containers | ||
# https://seqera.io/containers/ | ||
# | ||
FROM mambaorg/micromamba:1.5.10-noble | ||
MAINTAINER Paolo Di Tommaso <[email protected]> | ||
|
||
RUN \ | ||
micromamba install -y -n base -c defaults -c bioconda -c conda-forge \ | ||
salmon=1.10.2 \ | ||
fastqc=0.12.1 \ | ||
multiqc=1.17 \ | ||
python=3.11 \ | ||
typing_extensions \ | ||
importlib_metadata \ | ||
procps-ng \ | ||
&& micromamba clean -a -y | ||
COPY --chown=$MAMBA_USER:$MAMBA_USER conda.yml /tmp/conda.yml | ||
RUN micromamba install -y -n base -f /tmp/conda.yml \ | ||
&& micromamba install -y -n base conda-forge::procps-ng \ | ||
&& micromamba clean -a -y | ||
|
||
ENV PATH="$MAMBA_ROOT_PREFIX/bin:$PATH" | ||
USER root |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
version ?= v1.2.1 | ||
version ?= v1.3.0 | ||
|
||
all: build push | ||
|
||
build: | ||
cp ../conda.yml . | ||
docker build --output=type=docker --progress=plain --tag quay.io/nextflow/rnaseq-nf:${version} . | ||
docker build --output=type=docker --progress=plain --tag docker.io/nextflow/rnaseq-nf:${version} . | ||
|
||
push: | ||
docker push quay.io/nextflow/rnaseq-nf:${version} | ||
docker push docker.io/nextflow/rnaseq-nf:${version} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters