aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-12-10 12:02:11 +0100
committerosmith <osmith@sysmocom.de>2021-12-13 12:06:59 +0000
commita09e593d2da66c1cf361e35b038e19e2fdc142c5 (patch)
tree0934c764ca6d58f65d1e0edcf147af14f4d996c6
parent351c2b22ad934b7e460d7c29bc452e5c6ee39fdb (diff)
osmo-pcap-master: doesn't need libosmo-netif
Don't attempt to install libosmo-netif in this Dockerfile. I've noticed this because we want to build osmo-pcap for CentOS7 with this container to run the TTCN-3 tests, and we don't have libosmo-netif for CentOS7. Add pkgconfig(libosmogb), which is required to build osmo-pcap according to configure.ac. In Debian, this gets installed as part of libosmocore-dev. Related: SYS#5754 Change-Id: I9c3a3b43ee7c25c06042f3303b9edb4005e7db31
-rw-r--r--osmo-pcap-master/Dockerfile3
1 files changed, 1 insertions, 2 deletions
diff --git a/osmo-pcap-master/Dockerfile b/osmo-pcap-master/Dockerfile
index a2b75c1..eeb210c 100644
--- a/osmo-pcap-master/Dockerfile
+++ b/osmo-pcap-master/Dockerfile
@@ -9,16 +9,15 @@ RUN case "$DISTRO" in \
apt-get update && \
apt-get install -y --no-install-recommends \
libosmocore-dev \
- libosmo-netif-dev \
libzmq3-dev \
&& \
apt-get clean \
;; \
centos*) \
dnf install -y \
- "pkgconfig(libosmo-netif)" \
"pkgconfig(libosmocore)" \
"pkgconfig(libosmoctrl)" \
+ "pkgconfig(libosmogb)" \
"pkgconfig(libosmogsm)" \
"pkgconfig(libosmovty)" \
"pkgconfig(libzmq)" \