blob: 26d67d6d6ca6c2046c957c373286e48475d407ea [file] [log] [blame]
FROM debian:testing
MAINTAINER Ash Wilson
RUN apt-get update && apt-get install -y \
cmake \
autoconf \
libtool \
build-essential \
python-docutils \
libcppunit-dev \
swig \
doxygen \
liblog4cpp5-dev \
python-scipy \
gnuradio-dev \
gr-osmosdr \
libosmocore-dev
COPY ./ /src/
RUN ls /src
RUN mkdir /src/build
WORKDIR /src/build
RUN cmake .. && \
make && \
make install && \
ldconfig