removing Kali and Ubuntu14 test cases
diff --git a/dockerfiles/Kali.docker b/dockerfiles/Kali.docker
deleted file mode 100644
index cb2ecc6..0000000
--- a/dockerfiles/Kali.docker
+++ /dev/null
@@ -1,67 +0,0 @@
-FROM kalilinux/kali-linux-docker
-MAINTAINER Ash Wilson
-
-
-# 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 \
-    python-scipy \
-    cmake \
-    make \
-    autoconf \
-    automake \
-    cpp-4.9 \
-    gcc \
-    g++ \
-    libstdc++-4.9-dev \
-    libcppunit-dev \
-    swig \
-    doxygen \
-    liblog4cpp5-dev \
-    build-essential \
-    libtool \
-    shtool \
-    pkg-config \
-    libpcsclite-dev \
-    gnuradio \
-    gnuradio-dev \
-    gr-osmosdr \
-    libfftw3-dev \
-    libusb-1.0-0-dev \
-    libvolk1-dev \
-    libvolk1.1 \
-    libboost-all-dev \
-    libgnuradio-osmosdr0.1.4 \
-    libmirisdr0 \
-    libosmosdr-dev \
-    libosmosdr0 \
-    librtlsdr-dev \
-    librtlsdr0 \
-    osmo-sdr \
-    rtl-sdr \
-    wget \
-    python-talloc-dev \
-    libtalloc2 \
-    libtalloc-dev \
-    unzip \
-    libosmocore \
-    libosmocore-dev
-
-COPY ./ /src/
-
-RUN mkdir /root/.gnuradio/
-RUN echo "[grc]\nlocal_blocks_path=/usr/local/share/gnuradio/grc/blocks" > \
-    /root/.gnuradio/config.conf
-
-RUN mkdir /src/build && \
-    cd /src/build && \
-    cmake .. && \
-    make && \
-    # make test && \
-    make install && \
-    ldconfig
diff --git a/dockerfiles/Ubuntu14.docker b/dockerfiles/Ubuntu14.docker
deleted file mode 100644
index 9eb44f2..0000000
--- a/dockerfiles/Ubuntu14.docker
+++ /dev/null
@@ -1,59 +0,0 @@
-FROM ubuntu:14.10
-
-ENV OSMOCORE_GIT=git://git.osmocom.org/libosmocore.git
-ENV OSMOCORE_TAG=0.6.3
-
-# Fix repos in docker image:
-RUN sed -i "s/archive.ubuntu.com/old-releases.ubuntu.com/g" /etc/apt/sources.list
-
-# 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 \
-    gnuradio-dev \
-    gr-osmosdr \
-    libgnuradio-osmosdr0.1.1.4 \
-    libosmosdr-dev \
-    libosmosdr0 \
-    osmo-sdr \
-    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 && \
-    git checkout tags/$OSMOCORE_TAG && \
-    autoreconf -i && \
-    ./configure && \
-    make && \
-    make install && \
-    ldconfig -i
-
-
-COPY ./ /src/
-RUN mkdir /src/build && \
-    cd /src/build && \
-    cmake .. && \
-    make && \
-    # make test && \
-    make install && \
-    ldconfig