osmo-gsm-tester: Install gnuradio dependency

The python bindings of gnuradio are used to control a zmq connection
broker between srsENB and srsUE to emulate attenuations.

Change-Id: Ic4e8c4d6a5d1e20dd336ff15868c7c3f51dea323
This commit is contained in:
Pau Espin 2020-10-16 16:13:13 +02:00
parent 738ec9d51f
commit 2ac3deec0b
1 changed files with 6 additions and 0 deletions

View File

@ -112,6 +112,12 @@ RUN apt-get update && \
soapysdr0.7-module-lms7 && \
apt-get clean
# install gnuradio runtime dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends \
gnuradio && \
apt-get clean
WORKDIR /tmp
ARG OSMO_GSM_TESTER_BRANCH="master"