Added missing libraries for ffmpeg.

This commit is contained in:
SergeantPanda 2025-05-08 11:25:28 -05:00
parent cd5c6dff5f
commit 54bb3da486

View file

@ -10,13 +10,15 @@ RUN apt-get update && apt-get install -y \
&& add-apt-repository -y ppa:deadsnakes/ppa
RUN apt-get update && apt install -y \
RUN apt-get install -y \
curl wget gnupg2 ca-certificates lsb-release build-essential \
gcc libpcre3 libpcre3-dev libpq-dev procps streamlink \
libva-drm2 libva-x11-2 libva-dev libva-wayland2 \
i965-va-driver intel-media-va-driver mesa-va-drivers \
python3.13 python3.13-dev python3.13-venv python3-pip \
nginx \
libstdc++6 libglib2.0-0 libgomp1 libvdpau1 libva2 \
libxcb-shape0 libv4l-0 ocl-icd-libopencl1 \
alsa-base libasound2t64 nginx \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# --- Create Python virtual environment ---