2021-02-11 12:55:39 +08:00
|
|
|
FROM bistromath/gnuradio:v3.9
|
2017-09-29 04:30:18 +08:00
|
|
|
|
|
|
|
ENV num_threads 10
|
|
|
|
MAINTAINER bistromath@gmail.com version: 0.1
|
|
|
|
|
|
|
|
WORKDIR /opt
|
2019-10-07 19:06:47 +08:00
|
|
|
|
|
|
|
RUN apt install -y python3-zmq python3-scipy
|
|
|
|
|
2021-02-11 12:55:39 +08:00
|
|
|
RUN mkdir gr-air_modes
|
|
|
|
COPY . gr-air_modes/
|
|
|
|
WORKDIR /opt/gr-air_modes
|
2017-09-29 04:30:18 +08:00
|
|
|
RUN mkdir build && cd build && cmake ../ && make -j${num_threads} && make install && ldconfig
|