osmo-msc-latest: implicit libdbd-sqlite3 install

Remove the explicit mention of libdbd-sqlite3, as it is in the depends
of osmo-msc now.

Related: OS#3771
Change-Id: I0b6d8ea4295021ce5470ee342ed7d89b42886348
This commit is contained in:
Oliver Smith 2021-03-03 14:34:44 +01:00
parent b2a0f11a49
commit 46797c80ad
1 changed files with 1 additions and 3 deletions

View File

@ -18,13 +18,11 @@ RUN apt-key add /tmp/Release.key && \
rm /tmp/Release.key && \
echo "deb " $OSMOCOM_REPO " ./" > /etc/apt/sources.list.d/osmocom-latest.list
# libdbd-sqlite3: workaround for OS#3771
ADD $OSMOCOM_REPO/Release /tmp/Release
RUN apt-get update && \
apt-get install -y --no-install-recommends \
osmo-msc \
telnet \
libdbd-sqlite3 && \
telnet && \
apt-get clean
WORKDIR /tmp