File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,18 @@ ENV DEBIAN_FRONTEND=noninteractive
19
19
USER root
20
20
21
21
# For libfdk-aac-dev
22
- RUN if [ "$OS" = "debian"]; then \
22
+ RUN if [ "$OS" = "debian" ]; then \
23
23
echo "deb http://deb.$OS.org/$OS $DISTRIBUTION non-free" >> /etc/apt/sources.list; \
24
24
fi
25
25
26
+ # We need an up-to date ffmpeg on bookworm
27
+ RUN if [ "$DISTRIBUTION" = "bookworm" ]; then \
28
+ apt-get update && apt install -y ca-certificates && \
29
+ echo "deb https://www.deb-multimedia.org bookworm main non-free" >> /etc/apt/sources.list && \
30
+ apt-get update -oAcquire::AllowInsecureRepositories=true && \
31
+ apt-get install -y --allow-unauthenticated deb-multimedia-keyring \
32
+ fi
33
+
26
34
RUN \
27
35
apt-get update && \
28
36
apt-get install -y --no-install-recommends aspcud autoconf automake rsync \
You can’t perform that action at this time.
0 commit comments