blob: de0b2156bc2c0117aa70912675169a474090661b [file] [log] [blame]
FROM ubuntu:16.04
MAINTAINER Ash Wilson
RUN apt-get update && apt-get install -y \
uhd-host \
cmake \
autoconf \
libtool \
build-essential \
libcppunit-dev \
swig \
doxygen \
liblog4cpp5-dev \
python-scipy \
gnuradio-dev \
gr-osmosdr \
libosmocore-dev
COPY ./ /src/
RUN ls /src
RUN mkdir /src/build && \
cd /src/build && \
cmake .. && \
make && \
make install && \
ldconfig