-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
43 lines (39 loc) · 884 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
# use the ubuntu base image
FROM ubuntu:22.04
# maintainer
MAINTAINER Tobias Rausch rausch@embl.de
# install required apt packages
RUN apt-get update && apt-get install -y \
autoconf \
build-essential \
curl \
g++ \
git \
cmake \
gthumb \
libcurl4-gnutls-dev \
libboost-date-time-dev \
libboost-program-options-dev \
libboost-system-dev \
libboost-filesystem-dev \
libboost-iostreams-dev \
libbz2-dev \
libdeflate-dev \
libhdf5-dev \
libncurses-dev \
liblzma-dev \
python3 \
datamash \
gthumb \
pkg-config \
wget \
zlib1g-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# install tutorial tools
RUN cd /opt \
&& git clone --recursive https://github.com/tobiasrausch/sv \
&& cd /opt/sv \
&& make all
# by default /bin/bash is executed
CMD ["/bin/bash"]