forked from hyrise/hyrise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
55 lines (52 loc) · 1.64 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
51
52
53
54
55
# 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
# While it would be desirable to use Python's virtual environments, they are not straightforward to use in Jenkins'
# scripted pipelines. With Python >= 3.11, we need to use --break-system-packages.
FROM ubuntu:23.10
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update \
&& apt-get install -y \
autoconf \
bash-completion \
bc \
clang-15 \
clang-17 \
clang-format-17 \
clang-tidy-17 \
clang-tools-17 \
cmake \
curl \
dos2unix \
g++-11 \
gcc-11 \
gcovr \
git \
graphviz \
libboost1.81-all-dev \
libhwloc-dev \
libncurses5-dev \
libnuma-dev \
libnuma1 \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libtbb-dev \
lld \
lsb-release \
man \
ninja-build \
parallel \
postgresql-server-dev-all \
python3 \
python3-pip \
python3-venv \
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 --break-system-packages scipy pandas matplotlib # preload large Python packages (installs numpy and
others).
ENV HYRISE_HEADLESS_SETUP=true