-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
50 lines (48 loc) · 1.31 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
48
49
50
# IMPORTANT: Changes in this file do not automatically affect the Docker image used by the CI server.
# You need to build and push it manually, see the wiki for details:
# https://github.com/hyrise/hyrise/wiki/Docker-Image
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update \
&& apt-get install -y \
autoconf \
bash-completion \
bc \
clang-11 \
clang-14 \
clang-format-14 \
clang-tidy-14 \
cmake \
curl \
dos2unix \
g++-9 \
g++-11 \
gcc-9 \
gcc-11 \
gcovr \
git \
graphviz \
libboost-all-dev \
libhwloc-dev \
libncurses5-dev \
libnuma-dev \
libnuma1 \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libtbb-dev \
lld \
lsb-release \
man \
parallel \
postgresql-server-dev-all \
python3 \
python3-pip \
software-properties-common \
sudo \
valgrind \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
&& ln -sf /usr/bin/llvm-symbolizer-14 /usr/bin/llvm-symbolizer \
&& pip3 install scipy pandas matplotlib # preload large Python packages (installs numpy and others)
ENV HYRISE_HEADLESS_SETUP=true