debian-bookworm-titan: add ccache

Add ccache, so it can be used when rebuilding the testsuite from source
from a development branch. Ccache is not used by default.

Related: osmo-dev I800062d0379295a6905851db29e820ff16217653
Change-Id: I94d22b8da9f897974c5913b2a8138c653c215446
This commit is contained in:
Oliver Smith 2023-10-10 12:48:05 +02:00 committed by osmith
parent f9596689c3
commit 114c1c6933
1 changed files with 5 additions and 0 deletions

View File

@ -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)" && \