osmo-gsm-tester: Add missing srsLTE dependencies (soapy)

Currently srsLTE trials link against soapySDR library to have LimeSDR
support. We need to move installation of those new packages further
below in the Dockerfiler because that lib version is only available with
osmocom repositories (which were added at a later point in the file).

Change-Id: Ia0e506954ffebd94adb75fec6bf481e41f9ec436
This commit is contained in:
Pau Espin 2020-03-02 17:27:08 +01:00
parent 3e59758fd7
commit 79032097dc
1 changed files with 16 additions and 13 deletions

View File

@ -38,19 +38,6 @@ RUN pip3 install \
pyusb \
pysispm
# install srsLTE runtime dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends \
cmake \
libfftw3-dev \
libmbedtls-dev \
libboost-program-options-dev \
libconfig++-dev \
libsctp-dev \
libpcsclite-dev \
libuhd-dev \
libczmq-dev
# Intall sshd:
RUN apt-get update && apt-get install -y openssh-server
RUN mkdir /var/run/sshd
@ -109,6 +96,22 @@ RUN apt-get update && \
libasn1c-dev && \
apt-get clean
# install srsLTE runtime dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends \
cmake \
libfftw3-dev \
libmbedtls-dev \
libboost-program-options-dev \
libconfig++-dev \
libsctp-dev \
libpcsclite-dev \
libuhd-dev \
libczmq-dev \
libsoapysdr-dev \
soapysdr0.7-module-lms7 && \
apt-get clean
WORKDIR /tmp
ARG OSMO_GSM_TESTER_BRANCH="master"