blob: 9c2a5f041c3d15db75e1a683ed83a3903996b6b0 [file] [log] [blame]
Piotr Krysik6608e3f2016-03-13 21:18:15 +01001FROM ubuntu:15.04
2MAINTAINER Piotr Krysik
3
4# We know it's going to foul up, so we run this install separately and then ...fix... dpkg status
5RUN apt-get update && apt-get install -y uhd-host || \
6 sed -i "s/Status: install ok half-configured/Status: install ok installed/g" /var/lib/dpkg/status
7
8
9RUN apt-get update && apt-get install -y git python-pip
10RUN pip install PyBOMBS
11RUN pybombs prefix init /usr/local -a default_prx
12RUN pybombs config default_prefix default_prx
13RUN pybombs recipes add gr-recipes git+https://github.com/gnuradio/gr-recipes.git
14RUN pybombs recipes add gr-etcetera git+https://github.com/gnuradio/gr-etcetera.git
Piotr Krysikf5cfdf02016-03-14 14:07:55 +010015RUN pybombs -v install gr-gsm
Piotr Krysik6608e3f2016-03-13 21:18:15 +010016RUN ldconfig