aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYour Name <you@example.com>2016-04-14 11:14:55 +0200
committerYour Name <you@example.com>2016-04-14 11:14:55 +0200
commit8361b845d6fcc2082c1d8ff2dac377524a8ad66a (patch)
tree4a353f3766b004d97dbf24fcf6a45e2a8b3bf200 /tests
parentccdf2f1d48da78220811d6a7a9b8796329ad38b7 (diff)
Added docker image for building the package (if it prove to be usefull it probably will land into another directory)
Diffstat (limited to 'tests')
-rw-r--r--tests/dockerfiles/Ubuntu_16_04_debbuild.docker28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/dockerfiles/Ubuntu_16_04_debbuild.docker b/tests/dockerfiles/Ubuntu_16_04_debbuild.docker
new file mode 100644
index 0000000..ea34f67
--- /dev/null
+++ b/tests/dockerfiles/Ubuntu_16_04_debbuild.docker
@@ -0,0 +1,28 @@
+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 package && \
+ cpack -G DEB && \
+ ls
+