diff --git a/debian-bookworm-titan/Dockerfile b/debian-bookworm-titan/Dockerfile index 99a79c88..fcc00ba5 100644 --- a/debian-bookworm-titan/Dockerfile +++ b/debian-bookworm-titan/Dockerfile @@ -19,6 +19,7 @@ RUN set -x && \ apt-get install -y --no-install-recommends \ build-essential \ ca-certificates \ + ccache \ git \ iputils-ping \ netcat-openbsd \ @@ -31,6 +32,10 @@ RUN set -x && \ && \ apt-get clean +# Ccache is installed above so it can be optionally used when rebuilding the +# testsuites inside the docker containers. Don't use it by default. +ENV USE_CCACHE=0 + # Binary-only transcoding library for RANAP/RUA/HNBAP to work around TITAN only implementing BER RUN set -x && \ export DPKG_ARCH="$(dpkg --print-architecture)" && \