-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathDockerfile
More file actions
48 lines (42 loc) · 879 Bytes
/
Dockerfile
File metadata and controls
48 lines (42 loc) · 879 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
39
40
41
42
43
44
45
46
47
48
FROM ubuntu:24.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y dirmngr
RUN apt-get update && apt-get install --no-install-recommends -y \
ca-certificates \
clang \
clang-format \
clang-tools \
cloc \
colordiff \
cppcheck \
curl \
doxygen \
gcc \
gcovr \
g++ \
ghostscript \
git \
graphviz \
libclang-rt-dev \
libtinfo6 \
llvm \
locales-all \
make \
mingw-w64 \
pdftk-java \
poppler-utils \
python3 \
python3-pip \
python3-setuptools \
software-properties-common \
tzdata \
valgrind \
vim \
xxd \
xz-utils \
zbar-tools
RUN python3 -m pip install --break-system-packages cpp-coveralls
# Install Infer
RUN mkdir -p /opt && curl -L https://github.com/facebook/infer/releases/download/v1.2.0/infer-linux-x86_64-v1.2.0.tar.xz | tar -C /opt -x -J
ENV PATH $PATH:/opt/infer-linux-x86_64-v1.2.0/bin/
RUN apt-get clean