forked from stevekm/docker2singularity-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
29 lines (23 loc) · 870 Bytes
/
Dockerfile
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
# from: https://github.com/GenomicParisCentre/dockerfiles/blob/master/fastqc/fastqc-0.11.5/Dockerfile
############################################################
# Dockerfile to build FASTQC container images
# Based on Ubuntu
############################################################
# Set the base image to Ubuntu
FROM ubuntu:14.04
# File Author / Maintainer
MAINTAINER Laurent Jourdren <jourdren@biologie.ens.fr>
# Install OpenJDK 7 JRE
RUN apt-get update && apt-get install --yes \
openjdk-7-jre \
perl \
unzip
# Download FastQC
ADD http://www.bioinformatics.babraham.ac.uk/projects/fastqc/fastqc_v0.11.5.zip /tmp/
# Install FastQC
RUN cd /usr/local && \
unzip /tmp/fastqc_*.zip && \
chmod 755 /usr/local/FastQC/fastqc && \
ln -s /usr/local/FastQC/fastqc /usr/local/bin/fastqc && \
rm -rf /tmp/fastqc_*.zip
ENTRYPOINT ["fastqc"]