blob: 183fe6d0fb673f1ba339b107c1d330b7c6d1b48f [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
15RUN pybombs install gr-gsm
16RUN ldconfig