Skip to content
Snippets Groups Projects
Commit 41aef36c authored by Matthias Dressel's avatar Matthias Dressel
Browse files

dav1d-debian-unstable: Fix installation of python packages

Debian now respects PEP 668 [0] which would require us to call pip with
`--break-system-packages`. Instead we can just install the packages from
Debian repos directly since they are up-to-date.

[0] https://tracker.debian.org/news/1419957/accepted-python311-3112-3-source-into-unstable/
parent 457d9823
No related branches found
No related tags found
No related merge requests found
FROM debian:sid-20230202-slim
FROM debian:sid-20230208-slim
MAINTAINER VideoLAN roots <roots@videolan.org>
......@@ -17,10 +17,9 @@ RUN groupadd --gid ${VIDEOLAN_UID} videolan && \
apt-get update && \
apt-get -y dist-upgrade && \
apt-get install --no-install-suggests --no-install-recommends -y \
lftp ca-certificates curl git build-essential python3-pip \
python3-setuptools python3-wheel nasm clang mold \
lftp ca-certificates curl git build-essential \
nasm clang mold meson ninja-build gcovr \
wine wine64 procps doxygen graphviz libsdl2-dev ripgrep && \
pip3 install --no-cache-dir meson ninja gcovr && \
dpkg --add-architecture i386 && \
apt-get update && \
apt-get install --no-install-suggests --no-install-recommends -y \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment