aboutsummaryrefslogtreecommitdiffstats
path: root/osmocom-bb-host-master/Dockerfile
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2019-07-11 15:30:38 +0200
committerAlexander Couzens <lynxis@fe80.eu>2019-07-11 15:37:41 +0200
commitc034da05476429f1470c1245ad949fe45f08dc97 (patch)
tree73d31436db7405e09dde0ca0930619e8f7de97ef /osmocom-bb-host-master/Dockerfile
parentc2ed5bb201f6c4605b49b81d1a52ea5b96dbd778 (diff)
osmocom-bb-host-master: install python-enum as fake_trx dependency
62825cc8eb4e26d58d32a0af72b17256b185af61 (osmocom-bb) started to use the python module enum which not part of the standard libary of python 2. Change-Id: I70b7f1b43a1e121114a924c09614d6eddc801881
Diffstat (limited to 'osmocom-bb-host-master/Dockerfile')
-rw-r--r--osmocom-bb-host-master/Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/osmocom-bb-host-master/Dockerfile b/osmocom-bb-host-master/Dockerfile
index a4c8c16..1d79f06 100644
--- a/osmocom-bb-host-master/Dockerfile
+++ b/osmocom-bb-host-master/Dockerfile
@@ -13,10 +13,11 @@ RUN apt-key add /tmp/Release.key && \
rm /tmp/Release.key && \
echo "deb " $OSMOCOM_REPO " ./" > /etc/apt/sources.list.d/osmocom-nightly.list
+# python-enum34 is a dependecy of fake_trx as long we're using python2
ADD $OSMOCOM_REPO/Release /tmp/Release
RUN apt-get update && \
apt-get install -y --no-install-recommends \
- libosmocore-dev && \
+ libosmocore-dev python-enum34 && \
apt-get clean
WORKDIR /tmp