-
Notifications
You must be signed in to change notification settings - Fork 10
/
Dockerfile
28 lines (24 loc) · 1.03 KB
/
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
############################################################
# Dockerfile to build Eoulsan container images
# Based on Ubuntu
############################################################
# Set the base image to Ubuntu
FROM bioconductor/release_sequencing:3.1
# File Author / Maintainer
MAINTAINER Laurent Jourdren <[email protected]>
# Install Eoulsan
RUN cd /tmp && \
wget --quiet https://github.com/GenomiqueENS/eoulsan/releases/download/v2.6.1/eoulsan-2.6.1.tar.gz && \
tar --directory /usr/local -xf /tmp/eoulsan-*.tar.gz && \
ln -s /usr/local/eoulsan-*/eoulsan.sh /usr/local/bin/eoulsan.sh && \
ln -s /usr/local/eoulsan-*/eoulsan.sh /usr/local/bin/eoulsan && \
mkdir -p /data/genomes && \
mkdir -p /data/genomes_descs && \
mkdir -p /data/mappers_indexes && \
mkdir -p /data/annotations && \
mkdir -p /data/additional_annotations && \
mkdir -p /data/plugins && \
rm -rf /tmp/eoulsan-*.tar.gz && \
apt-get clean
# Default command to execute at startup of the container
CMD eoulsan.sh --version