-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathDockerfile
executable file
·137 lines (126 loc) · 3.56 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
FROM ubuntu:20.04
ENV HOME=/home/zoomrec \
TZ=Europe/Berlin \
TERM=xfce4-terminal \
START_DIR=/start \
DEBIAN_FRONTEND=noninteractive \
VNC_RESOLUTION=1024x576 \
VNC_COL_DEPTH=24 \
VNC_PW=zoomrec \
VNC_PORT=5901 \
DISPLAY=:1
# Add user
RUN useradd -ms /bin/bash zoomrec -d ${HOME}
WORKDIR ${HOME}
ADD res/requirements.txt ${HOME}/res/requirements.txt
# Install some tools
RUN apt-get update && \
apt-get install --no-install-recommends -y \
apt \
apt-utils \
ca-certificates \
publicsuffix \
libapt-pkg6.0 \
libpsl5 \
libssl1.1 \
libnss3 \
openssl \
wget \
locales \
bzip2 \
tzdata && \
# Generate locales for en_US.UTF-8
locale-gen en_US.UTF-8 && \
# Install tigervnc
wget -q -O tigervnc-1.10.0.x86_64.tar.gz https://sourceforge.net/projects/tigervnc/files/stable/1.10.0/tigervnc-1.10.0.x86_64.tar.gz && \
tar xz -f tigervnc-1.10.0.x86_64.tar.gz --strip 1 -C / && \
rm -rf tigervnc-1.10.0.x86_64.tar.gz && \
# Install xfce ui
apt-get install --no-install-recommends -y \
supervisor \
xfce4 \
xfce4-goodies \
xfce4-pulseaudio-plugin \
xfce4-terminal \
xubuntu-icon-theme && \
# Install pulseaudio
apt-get install --no-install-recommends -y \
pulseaudio \
pavucontrol && \
# Install necessary packages
apt-get install --no-install-recommends -y \
ibus \
dbus-user-session \
dbus-x11 \
dbus \
at-spi2-core \
xauth \
x11-xserver-utils \
libxkbcommon-x11-0 && \
# Install Zoom dependencies
apt-get install --no-install-recommends -y \
libxcb-xinerama0 \
libglib2.0-0 \
libxcb-shape0 \
libxcb-shm0 \
libxcb-xfixes0 \
libxcb-randr0 \
libxcb-image0 \
libfontconfig1 \
libgl1-mesa-glx \
libegl1-mesa \
libxi6 \
libsm6 \
libxrender1 \
libpulse0 \
libxcomposite1 \
libxslt1.1 \
libsqlite3-0 \
libxcb-keysyms1 \
libxcb-xtest0 && \
# Install Zoom
wget -q -O zoom_amd64.deb https://cdn.zoom.us/prod/5.13.4.711/zoom_amd64.deb && \
dpkg -i zoom_amd64.deb && \
apt-get -f install -y && \
rm -rf zoom_amd64.deb && \
# Install FFmpeg
apt-get install --no-install-recommends -y \
ffmpeg \
libavcodec-extra && \
# Install Python dependencies for script
apt-get install --no-install-recommends -y \
python3 \
python3-pip \
python3-tk \
python3-dev \
python3-setuptools \
scrot && \
pip3 install --upgrade --no-cache-dir -r ${HOME}/res/requirements.txt && \
# Install VLC - optional
apt-get install --no-install-recommends -y vlc && \
# Clean up
apt-get autoremove --purge -y && \
apt-get autoclean -y && \
apt-get clean -y && \
rm -rf /var/lib/apt/lists/*
# Allow access to pulseaudio
RUN adduser zoomrec pulse-access
USER zoomrec
# Add home resources
ADD res/home/ ${HOME}/
# Add startup
ADD res/entrypoint.sh ${START_DIR}/entrypoint.sh
ADD res/xfce.sh ${START_DIR}/xfce.sh
# Add python script with resources
ADD zoomrec.py ${HOME}/
ADD res/img ${HOME}/img
# Set permissions
USER 0
RUN chmod a+x ${START_DIR}/entrypoint.sh && \
chmod -R a+rw ${START_DIR} && \
chown -R zoomrec:zoomrec ${HOME} && \
find ${HOME}/ -name '*.sh' -exec chmod -v a+x {} + && \
find ${HOME}/ -name '*.desktop' -exec chmod -v a+x {} +
EXPOSE ${VNC_PORT}
USER zoomrec
CMD ${START_DIR}/entrypoint.sh