-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
38 lines (29 loc) · 780 Bytes
/
Dockerfile
File metadata and controls
38 lines (29 loc) · 780 Bytes
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
FROM ubuntu:20.04
# Install required components
RUN DEBIAN_FRONTEND=noninteractive apt update
RUN DEBIAN_FRONTEND=noninteractive apt -y upgrade
RUN DEBIAN_FRONTEND=noninteractive apt -y install \
build-essential \
doxygen \
graphviz \
git \
clang \
llvm \
lldb \
libboost-all-dev \
libbz2-dev \
libgtest-dev \
libgmock-dev \
libicu-dev \
libsqlite3-dev \
python-dev \
gdb \
cmake \
wget
# Build boost
WORKDIR /root
RUN wget https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.bz2
RUN tar -xf boost_1_80_0.tar.bz2
WORKDIR /root/boost_1_80_0
RUN ./bootstrap.sh --with-toolset=clang
RUN ./b2 --build_type=complete --toolset=clang install