aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dockerfiles/Debian_testing.docker
diff options
context:
space:
mode:
authorPiotr Krysik <ptrkrysik@gmail.com>2016-04-13 12:26:41 +0200
committerPiotr Krysik <ptrkrysik@gmail.com>2016-04-13 12:26:41 +0200
commit1d4254473649bebf00bdc8e386dcb0f23bf84d9d (patch)
tree7f8f465f6ccf17d3c05698e09d5ef040b00660aa /tests/dockerfiles/Debian_testing.docker
parentc084c5704e45be57e725d0a36d11372969e1a397 (diff)
Changes in dockerfiles:
-removed (prorbably) unnecessary packages -added docker file for debian testing
Diffstat (limited to 'tests/dockerfiles/Debian_testing.docker')
-rw-r--r--tests/dockerfiles/Debian_testing.docker26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/dockerfiles/Debian_testing.docker b/tests/dockerfiles/Debian_testing.docker
new file mode 100644
index 0000000..24dde82
--- /dev/null
+++ b/tests/dockerfiles/Debian_testing.docker
@@ -0,0 +1,26 @@
+FROM debian:testing
+
+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