Changing to Debian Jessie for build
diff --git a/DebianJessie.docker b/DebianJessie.docker
new file mode 100644
index 0000000..34acf65
--- /dev/null
+++ b/DebianJessie.docker
@@ -0,0 +1,48 @@
+FROM ashmastaflash/gradio37_debjessie
+
+ENV GRGSM_GIT=https://github.com/ptrkrysik/gr-gsm
+ENV OSMOCORE_GIT=git://git.osmocom.org/libosmocore.git
+ENV GR_OSMOSDR_GIT=git://git.osmocom.org/gr-osmosdr
+
+# 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 \
+    vim \
+    cmake \
+    autoconf \
+    libtool \
+    python-talloc-dev \
+    libtalloc2 \
+    libtalloc-dev \
+    libpcsclite-dev \
+    build-essential \
+    libboost-all-dev \
+    libcppunit-dev swig \
+    doxygen \
+    liblog4cpp5-dev \
+    python-scipy \
+    librtlsdr-dev \
+    librtlsdr0 \
+    rtl-sdr \
+    wget \
+    libxi-dev
+
+#RUN /usr/bin/git clone $OSMOCORE_GIT && \
+#  cd libosmocore && \
+#  autoreconf -i && \
+#  ./configure && \
+#  make && \
+#  make install && \
+#  ldconfig -i
+
+COPY ./ /src/
+RUN ls /src
+RUN mkdir /src/build && \
+    cd /src/build && \
+    cmake .. && \
+    make && \
+    make install && \
+    ldconfig