Skip to content

Commit eb55c1c

Browse files
committed
Use deb-multimedia on bookworm.
1 parent 2a6f391 commit eb55c1c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

docker/Dockerfile.ci

+9-1
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,18 @@ ENV DEBIAN_FRONTEND=noninteractive
1919
USER root
2020

2121
# For libfdk-aac-dev
22-
RUN if [ "$OS" = "debian"]; then \
22+
RUN if [ "$OS" = "debian" ]; then \
2323
echo "deb http://deb.$OS.org/$OS $DISTRIBUTION non-free" >> /etc/apt/sources.list; \
2424
fi
2525

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+
2634
RUN \
2735
apt-get update && \
2836
apt-get install -y --no-install-recommends aspcud autoconf automake rsync \

0 commit comments

Comments
 (0)