Added experimental test for pybombs installation on Ubuntu 15.04
diff --git a/dockerfiles/Ubuntu15_pybombs.docker b/dockerfiles/Ubuntu15_pybombs.docker
new file mode 100644
index 0000000..183fe6d
--- /dev/null
+++ b/dockerfiles/Ubuntu15_pybombs.docker
@@ -0,0 +1,16 @@
+FROM ubuntu:15.04
+MAINTAINER Piotr Krysik
+
+# We know it's going to foul up, so we run this install separately and then ...fix... dpkg status
+RUN apt-get update && apt-get install -y uhd-host || \
+     sed -i "s/Status: install ok half-configured/Status: install ok installed/g" /var/lib/dpkg/status
+
+
+RUN apt-get update && apt-get install -y git python-pip
+RUN pip install PyBOMBS
+RUN pybombs prefix init /usr/local -a default_prx
+RUN pybombs config default_prefix default_prx
+RUN pybombs recipes add gr-recipes git+https://github.com/gnuradio/gr-recipes.git
+RUN pybombs recipes add gr-etcetera git+https://github.com/gnuradio/gr-etcetera.git
+RUN pybombs install gr-gsm
+RUN ldconfig