Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM $SDK_BASE_IMAGE
WORKDIR /msquic
RUN apt-get update -y && \
apt-get upgrade -y && \
apt-get install -y cmake clang ruby-dev gem lttng-tools libssl-dev && \
apt-get install -y cmake clang ruby-dev gem lttng-tools libssl-dev gcc && \
gem install fpm
RUN git clone --depth 1 --single-branch --branch v2.4.4 --recursive https://github.com/microsoft/msquic
RUN cd msquic/ && \
Expand Down Expand Up @@ -41,9 +41,9 @@ ENV CONFIGURATION=$CONFIGURATION
ENV STRESS_ROLE=''
ENV STRESS_ARGS=''

# configure adress sanitizer
# configure address sanitizer
# Make sure ASAN_OPTIONS are compatible with CoreCLR: https://github.com/dotnet/runtime/blob/300485de6f5bf52c28192da930e1aa79cfef46df/src/native/minipal/sansupport.c#L18
ENV ASAN_OPTIONS='symbolize=1 use_sigaltstack=0 detect_leaks=0 handle_segv=0 allocator_may_return_null=1'
ENV LD_PRELOAD=/usr/lib/gcc/x86_64-linux-gnu/13/libasan.so
ENV LD_PRELOAD=/usr/lib/gcc/x86_64-linux-gnu/15/libasan.so

CMD ./entrypoint.sh
Loading