From 9a526e876f6a939f8bf6531b40876d1642a1e997 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Tue, 9 Mar 2021 15:08:21 +0100 Subject: [PATCH] osmo-msc-latest: centos8: add libdbi-dbd-sqlite The missing dependency is being added to osmo-msc master's contrib/osmo-msc.spec.in file. Until the next release is done, which contains the patch, install the library explicitly to fix: <0009> db.c:648 Failed to create database connection to sqlite3 db 'sms.db'; Is the sqlite3 database driver for libdbi installed on this system? Related: https://gerrit.osmocom.org/c/osmo-msc/+/23284 Change-Id: I27d4573de22a8e013623ec606e056d348102abd1 --- osmo-msc-latest/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osmo-msc-latest/Dockerfile b/osmo-msc-latest/Dockerfile index d2c11078..29e932a1 100644 --- a/osmo-msc-latest/Dockerfile +++ b/osmo-msc-latest/Dockerfile @@ -4,6 +4,7 @@ FROM $USER/$DISTRO-obs-latest # Arguments used after FROM must be specified again ARG DISTRO +# libdbi-dbd-sqlite can be removed after osmo-msc > 1.7.0 release RUN case "$DISTRO" in \ debian*) \ apt-get update && \ @@ -13,6 +14,7 @@ RUN case "$DISTRO" in \ ;; \ centos*) \ dnf install -y \ + libdbi-dbd-sqlite \ osmo-msc \ ;; \ esac