forked from IARCbioinfo/fastqc-nf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update dependencies and prepare v1.1
- Loading branch information
Showing
6 changed files
with
39 additions
and
31 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,22 +1,23 @@ | ||
################## BASE IMAGE ###################### | ||
FROM nfcore/base | ||
################## BASE IMAGE ##################### | ||
FROM continuumio/miniconda3:4.7.12 | ||
|
||
################## METADATA ###################### | ||
################## METADATA ####################### | ||
|
||
LABEL base_image="nfcore/base" | ||
LABEL version="1.0" | ||
LABEL software="FastQC-nf" | ||
LABEL software.version="1.0" | ||
LABEL about.summary="Container image containing all requirements for FastQC-nf" | ||
LABEL about.home="http://github.com/IARCbioinfo/FastQC-nf" | ||
LABEL about.documentation="http://github.com/IARCbioinfo/FastQC-nf/README.md" | ||
LABEL about.license_file="http://github.com/IARCbioinfo/FastQC-nf/LICENSE.txt" | ||
LABEL base_image="continuumio/miniconda3" | ||
LABEL version="4.7.12" | ||
LABEL software="fastqc-nf" | ||
LABEL software.version="1.1" | ||
LABEL about.summary="Container image containing all requirements for fastqc-nf" | ||
LABEL about.home="http://github.com/IARCbioinfo/fastqc-nf" | ||
LABEL about.documentation="http://github.com/IARCbioinfo/fastqc-nf/README.md" | ||
LABEL about.license_file="http://github.com/IARCbioinfo/fastqc-nf/LICENSE.txt" | ||
LABEL about.license="GNU-3.0" | ||
|
||
################## MAINTAINER ###################### | ||
MAINTAINER Tiffany Delhomme <delhommet@students.iarc.fr> | ||
MAINTAINER **nalcala** <**alcalan@iarc.fr**> | ||
|
||
################## INSTALLATION ###################### | ||
|
||
COPY environment.yml / | ||
RUN conda env update -n root -f /environment.yml && conda clean -a | ||
RUN apt-get update && apt-get install -y procps && apt-get clean -y | ||
RUN conda env create -n fastqc-nf -f /environment.yml && conda clean -a | ||
ENV PATH /opt/conda/envs/fastqc-nf/bin:$PATH |
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
From:iarcbioinfo/fastqc-nf:v1.1 | ||
Bootstrap:docker | ||
|
||
%labels | ||
MAINTAINER **alcalan** <**[email protected]**> | ||
DESCRIPTION Container image containing all requirements for pipeline fastqc-nf | ||
VERSION 1.1 |
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
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