-
Notifications
You must be signed in to change notification settings - Fork 34
/
Dockerfile-prod-base.in
138 lines (134 loc) · 3.1 KB
/
Dockerfile-prod-base.in
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
138
FROM ubuntu:22.04
ARG DEBIAN_FRONTEND=noninteractive
RUN \
apt-get update && \
apt-get dist-upgrade -y && \
apt-get install -y --no-install-recommends \
ca-certificates \
libatk1.0-0 \
libatk-bridge2.0-0 \
libatk-adaptor \
libatspi2.0-0 \
libunwind8 \
libdw1 \
libgmp10 \
libgsl27 \
libglib2.0-0 \
libcap2 \
libcups2 \
liborc-0.4-0 \
iso-codes \
libgl1 \
libgles1 \
libgles2 \
libgudev-1.0-0 \
libgbm1 \
libgraphene-1.0-dev \
libpng16-16 \
libjpeg8 \
libogg0 \
libopus0 \
libpango-1.0-0 \
libvisual-0.4-0 \
libtheora0 \
libvorbis0a \
libxkbcommon0 \
libxcomposite1 \
libxdamage1 \
libwayland-client0 \
libwayland-cursor0 \
libwayland-egl1 \
libwayland-server0 \
libharfbuzz-icu0 \
libegl1 \
libepoxy0 \
libgcrypt20 \
libwebp7 \
libwebpdemux2 \
libwebpmux3 \
libopenjp2-7 \
libwoff1 \
libxslt1.1 \
bubblewrap \
libseccomp2 \
xdg-dbus-proxy \
libsoup2.4-1 \
libvulkan1 \
libass9 \
libchromaprint1 \
libcurl3-gnutls \
libaom3 \
libbz2-1.0 \
liblcms2-2 \
libbs2b0 \
libdca0 \
libfaac0 \
libfaad2 \
libflite1 \
libssl3 \
ladspa-sdk \
libfdk-aac2 \
libgsm1 \
libkate1 \
libgme0 \
libde265-0 \
liblilv-0-0 \
libmodplug1 \
mjpegtools \
libmjpegutils-2.1-0 \
libmpcdec6 \
libdvdnav4 \
libdvdread8 \
librsvg2-2 \
librtmp1 \
libsbc1 \
libsndfile1 \
libsoundtouch1 \
libspandsp2 \
libsrt1.4-openssl \
libsrtp2-1 \
libvo-aacenc0 \
libvo-amrwbenc0 \
libwebrtc-audio-processing1 \
libofa0 \
libzvbi0 \
libopenexr25 \
libwildmidi2 \
libx265-199 \
libzbar0 \
wayland-protocols \
libaa1 \
libmp3lame0 \
libcaca0 \
libdv4 \
libmpg123-0 \
libvpx7 \
libshout3 \
libspeex1 \
libtag1v5 \
libtwolame0 \
libwavpack1 \
liba52-0.7.4 \
libx264-163 \
libopencore-amrnb0 \
libopencore-amrwb0 \
libmpeg2-4 \
libavcodec58 \
libavfilter7 \
libavformat58 \
libavutil56 \
libva2 \
libva-wayland2 \
xvfb \
libxrandr-dev \
glibc-tools
COPY docker/install-arch-specific-dependencies.sh /.install-deps.sh
RUN /.install-deps.sh
# Add 'render' group to allow access to /dev/dri/renderD128
# To have access to the Intel GPU through libva for hardware acceleration,
# running user must be in the 'video' and 'render' groups.
RUN \
rm -f /.install-deps.sh && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
groupadd -f -g 110 render