-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDockerfile
38 lines (36 loc) · 1.02 KB
/
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
ARG BASE_IMAGE=mcr.microsoft.com/dotnet/core/sdk:2.2.207
FROM $BASE_IMAGE AS build
ARG CORECLR_BRANCH=v2.2.8
RUN apt-get update && \
apt-get install -y \
cmake \
llvm-4.0 \
clang-4.0 \
lldb-4.0 \
liblldb-4.0-dev \
libunwind8 \
libunwind8-dev \
gettext \
libicu-dev \
liblttng-ust-dev \
libcurl4-openssl-dev \
libssl-dev \
uuid-dev \
libnuma-dev \
libkrb5-dev \
git && \
git clone https://github.com/dotnet/coreclr.git /coreclr
WORKDIR /coreclr
RUN git checkout $CORECLR_BRANCH
COPY patches /patches
RUN if [ -f /patches/$CORECLR_BRANCH.patch ] ; then git apply /patches/$CORECLR_BRANCH.patch ; fi
RUN ./build.sh clang4.0
FROM $BASE_IMAGE
RUN apt-get update && \
apt-get install -y \
lldb-4.0 && \
rm -rf /var/lib/apt/lists/* && \
ln -s /coreclr/createdump /usr/bin/createdump
COPY --from=build /coreclr/bin/Product/Linux.x64.Debug /coreclr
ENV COREDUMP_PATH /tmp/coredump
CMD /usr/bin/lldb-4.0 /usr/bin/dotnet --core $COREDUMP_PATH -o 'plugin load /coreclr/libsosplugin.so' -o 'sos PrintException -lines'