Skip to content

Commit

Permalink
Getting started with automated builds
Browse files Browse the repository at this point in the history
  • Loading branch information
rabdill committed Oct 5, 2018
0 parents commit 4e74b58
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM bioconductor/release_core2

LABEL org.label-schema.schema-version = "1.0.0-rc.1"

LABEL org.label-schema.vendor = "Blekhman Lab"
LABEL org.label-schema.name = "dada2"
LABEL org.label-schema.description = "Contains R and the DADA2 package (plus dependencies), used for 'fast and accurate sample inference from amplicon data with single-nucleotide resolution.'"
LABEL org.label-schema.vcs-url = "https://github.com/blekhmanlab/docker/tree/master/dada2"
LABEL org.label-schema.url = "https://benjjneb.github.io/dada2/"
LABEL maintainer="[email protected]"

LABEL org.label-schema.version = "1.8.0"

RUN R -e 'source("https://bioconductor.org/biocLite.R"); biocLite("dada2")'

CMD ["R"]

0 comments on commit 4e74b58

Please sign in to comment.