blob: 030ece8a7cf493c998813c09f6d880587fcf96c5 [file] [log] [blame]
Your Namebc50ad52016-04-14 11:14:55 +02001FROM ubuntu:16.04
2MAINTAINER Ash Wilson
3
4RUN apt-get update && apt-get install -y \
Your Namebc50ad52016-04-14 11:14:55 +02005 cmake \
6 autoconf \
7 libtool \
8 build-essential \
9 libcppunit-dev \
10 swig \
11 doxygen \
12 liblog4cpp5-dev \
13 python-scipy \
14 gnuradio-dev \
15 gr-osmosdr \
16 libosmocore-dev
17
18COPY ./ /src/
19RUN ls /src
20
Piotr Krysik50a0e952016-04-29 15:47:45 +020021RUN mkdir /src/build
22WORKDIR /src/build
23RUN cmake .. && \
Your Namebc50ad52016-04-14 11:14:55 +020024 make package && \
25 cpack -G DEB && \
26 ls
27