From 34d68e5cdc9b69e8d0feae70e06e44427e4370cd Mon Sep 17 00:00:00 2001 From: Dmitry Abakumov Date: Tue, 5 May 2020 11:08:10 +0300 Subject: [PATCH] Add docker image --- Dockerfile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c13d8ab --- /dev/null +++ b/Dockerfile @@ -0,0 +1,23 @@ +FROM ubuntu:bionic + +MAINTAINER Dmitry Abakumov, a.k.a 0MazaHacka0 + +# Update container +RUN apt-get update + +# GR-GSM +RUN export TZ=America/New_York && export DEBIAN_FRONTEND=noninteractive && apt-get install -y gnuradio gnuradio-dev git cmake autoconf libtool pkg-config g++ gcc make libc6 \ +libc6-dev libcppunit-1.14-0 libcppunit-dev swig doxygen liblog4cpp5v5 liblog4cpp5-dev python-scipy \ +gr-osmosdr libosmocore libosmocore-dev + +RUN git clone https://git.osmocom.org/gr-gsm + +RUN cd gr-gsm && mkdir build && cd build && cmake .. && make && make install && ldconfig + +# IMSI-catcher script +RUN apt-get install -y python-numpy python-scipy python-scapy + +ADD . /imsi-catcher/ + +# Wireshark +RUN export DEBIAN_FRONTEND=noninteractive && apt-get install -y wireshark tshark