-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
54 lines (44 loc) · 953 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from archlinux:latest
workdir /lib
# Install required dependencies
run pacman -Syu \
git \
python-scipy \
swig \
cppunit \
fftw \
boost \
boost-libs \
gnuradio \
gnuradio-osmosdr \
libvolk \
log4cpp \
base-devel \
cmake \
wxgtk3 \
python-wxpython \
libuhd-firmware \
gnuradio-companion \
python-requests \
--noconfirm
run python -m ensurepip --upgrade
run python -m pip install packaging
workdir /liquid
# Manual liquid-dsp install
run git clone https://github.com/jgaeddert/liquid-dsp.git . && \
sh ./bootstrap.sh && \
sh ./configure --prefix=/usr && \
make && \
make install
# Install gr-lora
workdir /src
arg CACHEBUST
run git clone https://github.com/kerbstomps/gr-lora.git . && \
mkdir build && \
cd build && \
cmake ../ -DCMAKE_INSTALL_PREFIX=/usr && \
make && \
make install && \
ldconfig
workdir /src/apps
expose 40868