Skip to content

Instantly share code, notes, and snippets.

@pgorczak
Last active July 24, 2017 11:56
Show Gist options
  • Save pgorczak/adca75e0938c087a2b2f845b0ced9916 to your computer and use it in GitHub Desktop.
Save pgorczak/adca75e0938c087a2b2f845b0ced9916 to your computer and use it in GitHub Desktop.
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