Targeting same version of libosmocore as kali
diff --git a/dockerfiles/DebianJessie.docker b/dockerfiles/DebianJessie.docker
index 74fdf30..43f54c8 100644
--- a/dockerfiles/DebianJessie.docker
+++ b/dockerfiles/DebianJessie.docker
@@ -1,6 +1,7 @@
 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
@@ -29,8 +30,19 @@
     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
+
 RUN mkdir /src/build && \
     cd /src/build && \
     cmake .. && \