-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
46 lines (41 loc) · 852 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
FROM ubuntu:20.04
ARG DEBIAN_FRONTEND=noninteractive
LABEL Image for python packages - [email protected]
RUN apt-get update -y && apt-get install -y --no-install-recommends \
ack-grep \
bzip2 \
curl \
bsdmainutils \
dbus \
default-jre \
emacs \
emacs-goodies-el \
ess \
gawk \
git \
grep \
less \
tmux \
rsync \
unzip \
wget \
zip \
python3-pip \
python3-numpy \
python3-scipy \
cython3 \
python3-pyfaidx \
python3-pybedtools \
python3-cyvcf2 \
python3-pandas \
python3-pysam \
python3-seaborn \
tzdata
# a few python libs that weren't available through apt-get
RUN pip install cruzdb==0.5.6 \
intervaltree_bio==1.0.1 \
multiqc==1.11 \
pyensembl==1.9.4 \
regex
# timezone env with default
ENV TZ=America/Chicago