forked from skonagaya/RPi-Streamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
105 lines (75 loc) · 3.12 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
FROM resin/rpi-raspbian:stretch
ENTRYPOINT []
###########################################################
# using curl and git to download pi cam interface binaries
# using netstat to check state of streaming server
# using vim as text editor
# using alsa as sound interface
###########################################################
RUN apt-get update && \
apt-get -qy install \
curl git net-tools vim alsa-utils
################################
# everything will run in /root/
################################
WORKDIR /root/
############################
# download and install node
############################
RUN curl -O \
https://nodejs.org/dist/v4.9.1/node-v4.9.1-linux-armv6l.tar.gz && \
tar -xvf node-v4.9.1-linux-armv6l.tar.gz -C /usr/local --strip-components=1 && \
rm node-v4.9.1-linux-armv6l.tar.gz
########################################
# install prerequisite for picam binary
########################################
RUN apt-get -qy install npm libharfbuzz0b libfontconfig1 libasound2
RUN npm install coffee-script -g
RUN mkdir -p /root/run/rec && \
mkdir -p /root/run/hooks && \
mkdir -p /root/run/state && \
mkdir -p /root/picam/archive && \
ln -sfn /root/picam/archive /root/run/rec/archive && \
ln -sfn /root/run/rec /root/picam/rec && \
ln -sfn /root/run/hooks /root/picam/hooks && \
ln -sfn /root/run/state /root/picam/state
####################################
# download and install picam binary
####################################
RUN curl -OL \
https://github.com/iizukanao/picam/releases/download/v1.4.7-dev-4ch/picam-1.4.7-4ch-binary.tar.xz && \
tar xvf picam-1.4.7-4ch-binary.tar.xz && \
rm picam-1.4.7-4ch-binary.tar.xz && \
cp picam-1.4.7-4ch-binary/picam ~/picam/
########################################
# download and install streaming server
########################################
RUN git clone https://github.com/iizukanao/node-rtsp-rtmp-server.git && \
cd node-rtsp-rtmp-server && \
npm install -d
##############################################
# create symlinks for libraries used by picam
##############################################
RUN ln -s /opt/vc/lib/libopenmaxil.so /usr/lib/libopenmaxil.so && \
ln -s /opt/vc/lib/libbcm_host.so /usr/lib/libbcm_host.so && \
ln -s /opt/vc/lib/libvcos.so /usr/lib/libvcos.so && \
ln -s /opt/vc/lib/libvchiq_arm.so /usr/lib/libvchiq_arm.so && \
ln -s /opt/vc/lib/libbrcmGLESv2.so /usr/lib/libbrcmGLESv2.so && \
ln -s /opt/vc/lib/libbrcmEGL.so /usr/lib/libbrcmEGL.so && \
ln -s /opt/vc/lib/libGLESv2.so /usr/lib/libGLESv2.so && \
ln -s /opt/vc/lib/libEGL.so /usr/lib/libEGL.so
#######################################
# copy over the start and stop scripts
#######################################
COPY /bin/start.sh /root/bin/start.sh
COPY /bin/stop.sh /root/bin/stop.sh
RUN chmod +x /root/bin/start.sh
RUN chmod +x /root/bin/stop.sh
####################################
# copy over streaming server config
####################################
COPY /config/config.coffee /root/node-rtsp-rtmp-server/config.coffee
##############################
# run start script at startup
##############################
CMD ["/root/bin/start.sh"]