-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.Dockerfile
89 lines (75 loc) · 3.54 KB
/
base.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
ARG OS=ubuntu
ARG TAG=focal
FROM ${OS}:${TAG} as base
# Install required packages
ARG CLANG_VER=14
ARG GCC_VER=11
RUN export DEBIAN_FRONTEND=noninteractive && apt update \
&& apt install -y git htop sudo curl wget net-tools jq locales software-properties-common
# for gcc
RUN add-apt-repository -y ppa:ubuntu-toolchain-r/test
# for cmake
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | sudo apt-key add - \
&& sudo apt-add-repository 'deb https://apt.kitware.com/ubuntu/ focal main'
RUN apt update && apt install -y \
build-essential cmake ninja-build valgrind gdb rr doxygen \
python3 python3-pip \
gcc-${GCC_VER} g++-${GCC_VER} \
libbabeltrace-ctf-dev systemtap-sdt-dev libslang2-dev libelf-dev libunwind-dev libdw-dev libiberty-dev
# install clang
RUN wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh \
&& ./llvm.sh ${CLANG_VER} all && rm -f llvm.sh
# Set selected clang version as default
RUN ln -s /usr/bin/clang-${CLANG_VER} /usr/bin/clang \
&& ln -s /usr/bin/clang-tidy-${CLANG_VER} /usr/bin/clang-tidy \
&& ln -s /usr/bin/clang-format-${CLANG_VER} /usr/bin/clang-format \
&& ln -s /usr/bin/scan-build-${CLANG_VER} /usr/bin/scan-build \
&& ln -s /usr/bin/run-clang-tidy-${CLANG_VER} /usr/bin/run-clang-tidy \
&& ln -s /usr/bin/clang-apply-replacements-${CLANG_VER} /usr/bin/clang-apply-replacements
# Setup user and shell
ARG INSTALL_ZSH="false"
ARG USERNAME=vscode
ARG USER_UID=1000
ARG USER_GID=$USER_UID
COPY scripts/setup.sh /tmp
RUN chmod +x /tmp/setup.sh \
&& /tmp/setup.sh "${INSTALL_ZSH}" "${USERNAME}" "${USER_UID}" "${USER_GID}" "true" \
&& rm -f /tmp/setup.sh
#################################################################################################
FROM base as perf-builder
RUN export DEBIAN_FRONTEND=noninteractive \
&& apt install -y --no-install-recommends gcc-8 g++-8 flex bison
RUN export CC=gcc-8 && export CXX=g++-8 \
&& git clone --branch linux-msft-wsl-5.10.y --depth=1 https://github.com/microsoft/WSL2-Linux-Kernel.git /tmp/wsl2-kernel \
&& cd /tmp/wsl2-kernel/tools/perf && make
#################################################################################################
FROM base as codechecker-builder
RUN curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
RUN export DEBIAN_FRONTEND=noninteractive \
&& apt install -y python3-dev python3-venv nodejs
RUN git clone https://github.com/Ericsson/CodeChecker.git --depth 1 /codechecker
SHELL ["/bin/bash", "-c"]
ENV BUILD_LOGGER_64_BIT_ONLY=YES
RUN cd /codechecker \
&& npm install -g node-gyp \
&& make venv \
&& source $PWD/venv/bin/activate \
&& make package
#################################################################################################
FROM base
# Setup perf
COPY --from=perf-builder /tmp/wsl2-kernel/tools/perf/perf /usr/local/bin
# Setup CodeChecker
COPY --from=codechecker-builder /codechecker/build/CodeChecker /opt/codechecker
COPY --from=codechecker-builder /codechecker/analyzer/requirements.txt /opt/codechecker
RUN pip3 install -r /opt/codechecker/requirements.txt \
&& ln -s /opt/codechecker/bin/CodeChecker /usr/bin/CodeChecker
# Setup flame-graph
RUN git clone --depth=1 https://github.com/brendangregg/FlameGraph /opt/flame-graph
# Setup cmake utils
COPY scripts/.CodeCheckerIgnore scripts/utils.cmake /opt/cmake-utils/
#Setup profiling script
COPY scripts/cpu-profile.sh /opt
RUN chmod +x /opt/cpu-profile.sh && ln -s /opt/cpu-profile.sh /usr/bin/cpu-profile
# Cleanup
RUN export DEBIAN_FRONTEND=noninteractive && apt autoremove -y