-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
50 lines (43 loc) · 980 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
FROM neuroforlunch/gnuradio-companion-plus:p3-gnuradio-darkmode
RUN apt-get -yq install \
ocl-icd-libopencl1 \
ocl-icd-opencl-dev \
opencl-c-headers \
opencl-clhpp-headers \
opencl-headers \
pocl-opencl-icd \
python3-pyopencl \
xorg-dev \
libglu1-mesa-dev \
libdrm-dev \
libxfixes-dev \
libxext-dev \
libtinfo-dev \
libedit-dev \
zlib1g-dev
# Install GLFW
RUN mkdir -p /src \
&& cd /src \
&& git clone https://github.com/glfw/glfw.git \
&& cd glfw \
&& mkdir build \
&& cd build \
&& cmake -DBUILD_SHARED_LIBS=true .. \
&& make \
&& make install \
&& ldconfig \
&& cd / \
&& rm -rf /src/
# Install gr-fosphor-vm for generic architectures
RUN mkdir -p /src \
&& cd /src \
&& git clone https://github.com/NeuroForLunch/gr-fosphor-vm.git --branch maint-3.8-generic \
&& cd gr-fosphor-vm \
&& mkdir build \
&& cd build \
&& cmake .. \
&& make \
&& make install \
&& ldconfig \
&& cd / \
&& rm -rf /src/