aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dockerfiles/Debian_Jessie.docker
blob: a3596480c352cba410f69642bc5ec26e693ef5a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
FROM debian:testing

# 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 install -y \
    git \
    vim \
    cmake \
    autoconf \
    libtool \
    build-essential \
    libboost-all-dev \
    libcppunit-dev swig \
    doxygen \
    liblog4cpp5-dev \
    python-scipy \
    gnuradio \
    gnuradio-dev \
    gr-osmosdr \
    libosmogsm5

COPY ./ /src/
RUN ls /src

RUN mkdir /src/build && \
    cd /src/build && \
    cmake .. && \
    make && \
    make test && \
    make install && \
    ldconfig