From 63ec8fe83a0e955e2a8fb97ba4f7f148abe87344 Mon Sep 17 00:00:00 2001 From: Andras Fekete Date: Thu, 8 Aug 2024 15:39:32 -0400 Subject: [PATCH] Add in 'libbacktrace' --- Docker/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Docker/Dockerfile b/Docker/Dockerfile index 24c5c8e2b7..e6c3cd35d3 100644 --- a/Docker/Dockerfile +++ b/Docker/Dockerfile @@ -44,6 +44,8 @@ RUN cd /opt/sources && wget -q -O- https://roumenpetrov.info/secsh/src/pkixssh-1 # Install udp/tcp-proxy RUN cd /opt/sources && git clone --depth=1 --single-branch --branch=main http://github.com/wolfssl/udp-proxy && cd udp-proxy && make && cp tcp_proxy udp_proxy /bin/. +# Install libbacktrace +RUN cd /opt/sources && git clone --depth=1 --single-branch https://github.com/ianlancetaylor/libbacktrace.git && cd libbacktrace && mkdir build && cd build && ../configure && make && make install # Allow non-root to use tcpdump (will need NET_RAW and NET_ADMIN capability when running the container) RUN setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' /usr/bin/tcpdump