Revert "osmocom-bb-host-master: install python-enum as fake_trx dependency"

This reverts commit c034da0547.
Python 2 is EOL, we are using Python 3 now with built-in enums.

Change-Id: I6aa653f2165bb9a81aa8253fabc0fb436bcba009
This commit is contained in:
Vadim Yanitskiy 2021-12-02 23:39:21 +03:00
parent 2586829c5c
commit 4a44d23aed
1 changed files with 1 additions and 2 deletions

View File

@ -18,11 +18,10 @@ 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 python-enum34 && \
libosmocore-dev && \
apt-get clean
WORKDIR /tmp