forked from StaPH-B/docker-builds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
40 lines (34 loc) · 1.12 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
29
30
31
32
33
34
35
36
37
38
39
40
FROM ubuntu:bionic
LABEL base.image="ubuntu:bionic"
LABEL container.version="1"
LABEL software="NanoPlot"
LABEL software.version="1.29.0"
LABEL description="Plotting suite for Oxford Nanopore sequencing data and alignments"
LABEL website="https://github.com/wdecoster/NanoPlot"
LABEL license="https://github.com/wdecoster/NanoPlot/blob/master/LICENSE"
LABEL maintainer="Curtis Kapsak"
LABEL maintainer.email="[email protected]"
RUN apt-get update && apt-get install -y zlib1g-dev \
bzip2 \
libbz2-dev \
liblzma-dev \
libcurl4-gnutls-dev \
libncurses5-dev \
libssl-dev \
python3 \
python3-pip \
python3-setuptools \
locales && \
locale-gen en_US.UTF-8 && \
apt-get autoclean
# for singularity compatibility
ENV LC_ALL=C
# update pip, install NanoPlot
RUN python3 -m pip install -U pip && \
pip3 install psutil requests NanoPlot==1.29.0 && \
mkdir /data
WORKDIR /data
## NOTICE: YOU MAY SEE A WARNING REGARDING ORCA NOT BEING INSTALLED
## WHEN RUNNING NANOPLOT. DO NOT FEAR, AS IT'S OPTIONAL AND NANOPLOT
## SHOULD RUN AS NORMAL. SEE THE LINK BELOW FOR MORE INFO:
## https://github.com/wdecoster/NanoPlot/issues/174