forked from aau-zid/BigBlueButton-liveStreaming
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
63 lines (49 loc) · 1.81 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
ARG FFMPEG_VERSION=4.2.4
FROM ubuntu:focal
ARG FFMPEG_VERSION
WORKDIR /usr/src/app
RUN apt-get update && apt-get install -y software-properties-common && apt-get update
RUN apt-get update && apt-get install -y \
python3-pip \
python3-dev \
xvfb \
fluxbox \
ffmpeg \
dbus-x11 \
libasound2 \
libasound2-plugins\
alsa-utils \
alsa-oss \
pulseaudio \
pulseaudio-utils
RUN ln -s /usr/bin/python3 /usr/local/bin/python \
&& pip3 install --upgrade pip
COPY py_requirements.txt ./
RUN pip install --no-cache-dir -r py_requirements.txt
RUN apt-get update && \
apt-get install -y gnupg wget curl unzip --no-install-recommends && \
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list && \
apt-get update -y && \
apt-get install -y google-chrome-stable && \
CHROMEVER=$(google-chrome --product-version | grep -o "[^\.]*\.[^\.]*\.[^\.]*") && \
DRIVERVER=$(curl -s "https://chromedriver.storage.googleapis.com/LATEST_RELEASE_$CHROMEVER") && \
wget -q --continue "http://chromedriver.storage.googleapis.com/$DRIVERVER/chromedriver_linux64.zip" && \
unzip chromedriver* && \
pwd && ls
ENV BBB_AS_MODERATOR false
ENV BBB_USER_NAME Live
ENV BBB_CHAT_NAME Chat
ENV BBB_SHOW_CHAT false
ENV BBB_ENABLE_CHAT false
ENV BBB_REDIS_HOST redis
ENV BBB_REDIS_CHANNEL chat
RUN DEBIAN_FRONTEND="noninteractive" apt-get -y install tzdata
ENV TZ Europe/Vienna
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
COPY stream.py ./
COPY chat.py ./
COPY startStream.sh ./
COPY docker-entrypoint.sh ./
ENTRYPOINT ["sh","docker-entrypoint.sh"]
CMD ["sh","startStream.sh" ]