forked from hyrise/hyrise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
47 lines (45 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
41
42
43
44
45
46
47
# https://github.com/hyrise/hyrise/wiki/Docker-Image
FROM ubuntu:19.10
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update \
&& apt-get install -y software-properties-common \
&& add-apt-repository -y ppa:mhier/libboost-latest \
&& apt-get update \
&& apt-get install -y \
autoconf \
bash-completion \
bc \
ccache \
clang-9 \
clang-format-9 \
clang-tidy-9 \
cmake \
curl \
g++-9 \
gcc-9 \
gcovr \
git \
graphviz \
libboost1.70-dev \
libhwloc-dev \
libncurses5-dev \
libnuma-dev \
libnuma1 \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libtbb-dev \
man \
parallel \
postgresql-server-dev-all \
python2.7 \
python-pexpect \
python-pip \
sudo \
systemtap \
systemtap-sdt-dev \
valgrind \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
&& ln -sf /usr/bin/llvm-symbolizer-3.8 /usr/bin/llvm-symbolizer
ENV OPOSSUM_HEADLESS_SETUP=true