forked from chadnickbok/librtcdcpp
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDockerfile-debian.armv7
More file actions
32 lines (31 loc) · 1.08 KB
/
Dockerfile-debian.armv7
File metadata and controls
32 lines (31 loc) · 1.08 KB
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
FROM arm32v7/debian:sid-slim
RUN apt-get -y update
RUN apt-get -y dist-upgrade
RUN apt-get -y install cmake
RUN apt-get -y install g++
RUN apt-get -y install libssl-dev
RUN apt-get -y install libnice-dev
RUN apt-get -y install libtool
RUN apt-get -y install m4
RUN apt-get -y install automake
RUN apt-get -y install libffi-dev
RUN apt-get -y install libmount-dev
RUN apt-get -y install autoconf
RUN apt-get -y install make
RUN apt-get -y install python3
RUN apt-get -y install python3-pip
RUN apt-get -y install python3-dev
RUN apt-get -y install libzmq3-dev
RUN pip3 install --upgrade pip setuptools
RUN pip3 install cffi
RUN apt-get -y install libfreetype6-dev libpng-dev
RUN pip3 install matplotlib
RUN pip3 install numpy
RUN pip3 install cent
RUN apt-get -y install protobuf-compiler libprotobuf-dev
ADD ./ /psl-librtcdcpp
RUN cd /psl-librtcdcpp/python/centrifuge-python && pip3 install -r requirements.txt && python3 setup.py install
RUN cd /psl-librtcdcpp/usrsctp/ && sh ./bootstrap && ./configure
WORKDIR /psl-librtcdcpp
RUN cd /psl-librtcdcpp && cd ./python/ && ./build.sh
ENV LD_LIBRARY_PATH=./