aboutsummaryrefslogtreecommitdiffstats
path: root/osmo-msc-latest
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2019-01-29 11:05:06 +0100
committerOliver Smith <osmith@sysmocom.de>2019-01-29 11:36:00 +0100
commit2279152bb2735337981a6bf839578edf64f826ab (patch)
treefc9ba2decf2d4c78c8fb30dff08d54608c408db5 /osmo-msc-latest
parent0c4eba94e5d7a72e2d0353039ee4384f20ec45a3 (diff)
osmo-msc-latest: install libdbd-sqlite3
Fix osmo-msc crash at start up: <0009> db.c:621 Failed to create database connection to sqlite3 db 'sms.db'; Is the sqlite3 database driver for libdbi installed on this system? DB: Failed to init database: sms.db It would be better if the Debian package pulled in this dependency automatically, see OS#3771. Related: OS#3767 Change-Id: Ia816aed8dd3b86f44f4454af89cec6f0b9d55dd1
Diffstat (limited to 'osmo-msc-latest')
-rw-r--r--osmo-msc-latest/Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/osmo-msc-latest/Dockerfile b/osmo-msc-latest/Dockerfile
index a8cc3ba..928c93a 100644
--- a/osmo-msc-latest/Dockerfile
+++ b/osmo-msc-latest/Dockerfile
@@ -14,11 +14,13 @@ 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 && \
+ telnet \
+ libdbd-sqlite3 && \
apt-get clean
WORKDIR /tmp