Last active
July 24, 2017 11:56
-
-
Save pgorczak/adca75e0938c087a2b2f845b0ced9916 to your computer and use it in GitHub Desktop.
Dockerfile for reproducing https://github.com/BastilleResearch/gr-lora/issues/11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:16.04 | |
RUN apt-get update && apt-get install -y gnuradio-dev \ | |
&& rm -rf /var/lib/apt/lists/* | |
RUN apt-get update && apt-get install -y git cmake \ | |
&& git clone git://github.com/BastilleResearch/gr-lora.git \ | |
&& cd gr-lora \ | |
&& mkdir build \ | |
&& cd build \ | |
&& cmake ../ \ | |
&& make \ | |
&& make install \ | |
&& ldconfig \ | |
&& apt-get remove -y --autoremove git cmake \ | |
&& rm -rf /var/lib/apt/lists/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment