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
commitbc50ad50f297f164637a829a8ef1c5a3ed4b186a (patch)
tree4a353f3766b004d97dbf24fcf6a45e2a8b3bf200 /tests
parent387bb5d1824036b5f0e2ac55f97453e09ae7783f (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
+