-
Notifications
You must be signed in to change notification settings - Fork 0
/
DockerfileARM
50 lines (49 loc) · 1.34 KB
/
DockerfileARM
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 arm64v8/ubuntu:22.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update \
&& apt-get install -y \
autoconf \
bash-completion \
bc \
bison \
clang-11 \
clang-14 \
cmake \
curl \
flex \
git \
graphviz \
libboost-all-dev \
libbz2-dev \
libcurl4-openssl-dev \
libhwloc-dev \
libncurses5-dev \
libnuma-dev \
libnuma1 \
libpq-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libtbb-dev \
libxerces-c-dev \
libzstd-dev \
lld \
lsb-release \
man \
numactl \
parallel \
pkg-config \
postgresql-server-dev-all \
python3 \
python3-pip \
software-properties-common \
sudo \
time \
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)