osmith has uploaded this change for review. ( https://gerrit.osmocom.org/12720
Change subject: osmo-msc-latest: install libdbd-sqlite3
......................................................................
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
---
M osmo-msc-latest/Dockerfile
1 file changed, 3 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/docker-playground
refs/changes/20/12720/1
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 @@
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
--
To view, visit https://gerrit.osmocom.org/12720
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia816aed8dd3b86f44f4454af89cec6f0b9d55dd1
Gerrit-Change-Number: 12720
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <[email protected]>