Add Dockerfile.

This commit is contained in:
Nick Foster 2017-09-28 13:30:18 -07:00
parent 8cbcc676c4
commit f6ba6da8ba

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM bistromath/gnuradio:3.7.11
ENV num_threads 10
MAINTAINER bistromath@gmail.com version: 0.1
WORKDIR /opt
RUN mkdir gr-air-modes
COPY . gr-air-modes/
WORKDIR /opt/gr-air-modes
RUN mkdir build && cd build && cmake ../ && make -j${num_threads} && make install && ldconfig