Add gdb to build-tools (#9125)

So that compute_ctl can use it to print backtrace on core dumps

See issue #2800.
This commit is contained in:
Heikki Linnakangas
2024-09-27 10:29:35 +03:00
committed by Heikki Linnakangas
parent 02cdd37b56
commit 357fa070a3

View File

@@ -13,6 +13,9 @@ RUN useradd -ms /bin/bash nonroot -b /home
SHELL ["/bin/bash", "-c"]
# System deps
#
# 'gdb' is included so that we get backtraces of core dumps produced in
# regression tests
RUN set -e \
&& apt update \
&& apt install -y \
@@ -24,6 +27,7 @@ RUN set -e \
cmake \
curl \
flex \
gdb \
git \
gnupg \
gzip \