forked from StaPH-B/docker-builds
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
31 lines (25 loc) · 883 Bytes
/
Dockerfile
File metadata and controls
31 lines (25 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# base image
FROM ubuntu:xenial
# metadata
LABEL base.image="ubuntu:xenial"
LABEL version="1"
LABEL software="FASTQC"
LABEL software.version="0.11.8"
LABEL description="A quality control analysis tool for high throughput sequencing data"
LABEL website="https://www.bioinformatics.babraham.ac.uk/projects/fastqc/"
LABEL license="https://github.com/s-andrews/FastQC/blob/master/LICENSE.txt"
LABEL maintainer="Abigail Shockey"
LABEL maintainer.email="abigail.shockey@slh.wisc.edu"
RUN apt-get update && apt-get install -y \
unzip \
wget \
perl \
default-jre \
&& apt-get clean && apt-get autoclean && rm -rf /var/lib/apt/lists/*
RUN wget https://www.bioinformatics.babraham.ac.uk/projects/fastqc/fastqc_v0.11.8.zip && \
unzip fastqc_v0.11.8.zip && \
rm fastqc_v0.11.8.zip && \
chmod +x FastQC/fastqc
ENV PATH="${PATH}:/FastQC/"
RUN mkdir /data
WORKDIR /data