Restored oryginal Debian Jessie dockerfile
diff --git a/tests/dockerfiles/Debian_Jessie.docker b/tests/dockerfiles/Debian_Jessie.docker
index a359648..15ead21 100644
--- a/tests/dockerfiles/Debian_Jessie.docker
+++ b/tests/dockerfiles/Debian_Jessie.docker
@@ -1,25 +1,44 @@
-FROM debian:testing
+FROM ashmastaflash/gradio37_debjessie
+
+ENV OSMOCORE_GIT=git://git.osmocom.org/libosmocore.git
+ENV OSMOCORE_TAG=0.6.3
+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 uhd-host || \
+#     sed -i "s/Status: install ok half-configured/Status: install ok installed/g" /var/lib/dpkg/status
 
-RUN apt-get install -y \
+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 \
-    gnuradio \
-    gnuradio-dev \
-    gr-osmosdr \
-    libosmogsm5
+    librtlsdr-dev \
+    librtlsdr0 \
+    rtl-sdr \
+    wget \
+    libxi-dev
+
+
+RUN /usr/bin/git clone $OSMOCORE_GIT && \
+    cd libosmocore && \
+    git checkout tags/$OSMOCORE_TAG && \
+    autoreconf -i && \
+    ./configure && \
+    make && \
+    make install && \
+    ldconfig -i
 
 COPY ./ /src/
 RUN ls /src
@@ -28,6 +47,7 @@
     cd /src/build && \
     cmake .. && \
     make && \
-    make test && \
+    # make test && \
     make install && \
     ldconfig
+