-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathDockerfile
More file actions
32 lines (26 loc) · 978 Bytes
/
Dockerfile
File metadata and controls
32 lines (26 loc) · 978 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
# ==============================================================================================
# FILENAME : Dockerfile
# AUTHOR : Celthi
# CREATION : 2021-12-14
# Dockerfile to build enhanced gdb with core analyzer
# ==============================================================================================
ARG VARIANT="bullseye"
FROM mcr.microsoft.com/vscode/devcontainers/cpp:0-${VARIANT}
# [Optional] Uncomment this section to install additional packages.
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt install -y texinfo \
&& apt install -y libgmp-dev \
&& apt install -y build-essential \
&& apt install -y wget \
&& apt install -y python-dev \
&& apt install -y python3-dev \
&& apt install -y dh-autoreconf
WORKDIR /workspaces/core_analyzer/
COPY . .
RUN ./build_jemalloc.sh 5.3.0
RUN ./build_tcmalloc.sh 2.17.2
RUN ./build_gdb.sh
WORKDIR test
RUN make check
RUN make check-tcmalloc
RUN make check-jemalloc